diff options
Diffstat (limited to 'applications/luci-app-adblock')
40 files changed, 9707 insertions, 7534 deletions
diff --git a/applications/luci-app-adblock/Makefile b/applications/luci-app-adblock/Makefile index 47c0be68fd..48d20c7036 100644 --- a/applications/luci-app-adblock/Makefile +++ b/applications/luci-app-adblock/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Dirk Brenken (dev@brenken.org) +# Copyright 2017-2021 Dirk Brenken (dev@brenken.org) # This is free software, licensed under the Apache License, Version 2.0 include $(TOPDIR)/rules.mk diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js index 23e346ed7d..1f657651ba 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js @@ -8,7 +8,7 @@ return view.extend({ return L.resolveDefault(fs.read_direct('/etc/adblock/adblock.blacklist'), ''); }, handleSave: function(ev) { - var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n').replace(/[^a-z0-9\.\-\#\n]/g, '')) + '\n'; + var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n'; return fs.write('/etc/adblock/adblock.blacklist', value) .then(function(rc) { document.querySelector('textarea').value = value; diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js index 3f3d233e20..1b245ecde6 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js @@ -12,12 +12,12 @@ function handleAction(ev) { E('p', _('Add this (sub-)domain to your local blacklist.')), E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ - E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'id': 'blacklist', 'value': ev.target.getAttribute('value') }, []) + E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'spellcheck': 'false', 'id': 'blacklist', 'value': ev.target.getAttribute('value') }, []) ]) ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', @@ -47,12 +47,12 @@ function handleAction(ev) { E('p', _('Add this (sub-)domain to your local whitelist.')), E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ - E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'id': 'whitelist', 'value': ev.target.getAttribute('value') }, []) + E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'spellcheck': 'false', 'id': 'whitelist', 'value': ev.target.getAttribute('value') }, []) ]) ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', @@ -86,6 +86,7 @@ function handleAction(ev) { 'class': 'cbi-input-text', 'placeholder': 'google.com', 'style': 'width:300px', + 'spellcheck': 'false', 'id': 'search' }) ]) @@ -103,7 +104,7 @@ function handleAction(ev) { ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', @@ -157,7 +158,7 @@ function handleAction(ev) { ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', @@ -194,46 +195,46 @@ return view.extend({ render: function(dnsreport) { if (!dnsreport) { - dnsreport = '{ "data": "" }'; + dnsreport = '{}'; }; var content; content = JSON.parse(dnsreport); var rows_top = []; - var tbl_top = E('div', { 'class': 'table', 'id': 'top_10' }, [ - E('div', { 'class': 'tr table-titles' }, [ - E('div', { 'class': 'th right' }, _('Count')), - E('div', { 'class': 'th' }, _('Name / IP Address')), - E('div', { 'class': 'th right' }, _('Count')), - E('div', { 'class': 'th' }, _('Domain')), - E('div', { 'class': 'th right' }, _('Count')), - E('div', { 'class': 'th' }, _('Blocked Domain')) + var tbl_top = E('table', { 'class': 'table', 'id': 'top_10' }, [ + E('tr', { 'class': 'tr table-titles' }, [ + E('th', { 'class': 'th right' }, _('Count')), + E('th', { 'class': 'th' }, _('Name / IP Address')), + E('th', { 'class': 'th right' }, _('Count')), + E('th', { 'class': 'th' }, _('Domain')), + E('th', { 'class': 'th right' }, _('Count')), + E('th', { 'class': 'th' }, _('Blocked Domain')) ]) ]); var max = 0; - if (content.data.top_clients && content.data.top_domains && content.data.top_blocked) { - max = Math.max(content.data.top_clients.length, content.data.top_domains.length, content.data.top_blocked.length); + if (content.top_clients && content.top_domains && content.top_blocked) { + max = Math.max(content.top_clients.length, content.top_domains.length, content.top_blocked.length); } for (var i = 0; i < max; i++) { var a_cnt = '\xa0', a_addr = '\xa0', b_cnt = '\xa0', b_addr = '\xa0', c_cnt = '\xa0', c_addr = '\xa0'; - if (content.data.top_clients[i]) { - a_cnt = content.data.top_clients[i].count; + if (content.top_clients[i]) { + a_cnt = content.top_clients[i].count; } - if (content.data.top_clients[i]) { - a_addr = content.data.top_clients[i].address; + if (content.top_clients[i]) { + a_addr = content.top_clients[i].address; } - if (content.data.top_domains[i]) { - b_cnt = content.data.top_domains[i].count; + if (content.top_domains[i]) { + b_cnt = content.top_domains[i].count; } - if (content.data.top_domains[i]) { - b_addr = content.data.top_domains[i].address; + if (content.top_domains[i]) { + b_addr = '<a href="https://duckduckgo.com/?q=' + encodeURIComponent(content.top_domains[i].address) + '&k1=-1&km=l&kh=1" target="_blank" rel="noreferrer noopener" title="Domain Lookup">' + content.top_domains[i].address + '</a>'; } - if (content.data.top_blocked[i]) { - c_cnt = content.data.top_blocked[i].count; + if (content.top_blocked[i]) { + c_cnt = content.top_blocked[i].count; } - if (content.data.top_blocked[i]) { - c_addr = content.data.top_blocked[i].address; + if (content.top_blocked[i]) { + c_addr = '<a href="https://duckduckgo.com/?q=' + encodeURIComponent(content.top_blocked[i].address) + '&k1=-1&km=l&kh=1" target="_blank" rel="noreferrer noopener" title="Domain Lookup">' + content.top_blocked[i].address + '</a>'; } rows_top.push([ a_cnt, @@ -247,45 +248,45 @@ return view.extend({ cbi_update_table(tbl_top, rows_top); var rows_requests = []; - var tbl_requests = E('div', { 'class': 'table', 'id': 'requests' }, [ - E('div', { 'class': 'tr table-titles' }, [ - E('div', { 'class': 'th' }, _('Date')), - E('div', { 'class': 'th' }, _('Time')), - E('div', { 'class': 'th' }, _('Client')), - E('div', { 'class': 'th' }, _('Domain')), - E('div', { 'class': 'th' }, _('Answer')), - E('div', { 'class': 'th' }, _('Action')) + var tbl_requests = E('table', { 'class': 'table', 'id': 'requests' }, [ + E('tr', { 'class': 'tr table-titles' }, [ + E('th', { 'class': 'th' }, _('Date')), + E('th', { 'class': 'th' }, _('Time')), + E('th', { 'class': 'th' }, _('Client')), + E('th', { 'class': 'th' }, _('Domain')), + E('th', { 'class': 'th' }, _('Answer')), + E('th', { 'class': 'th' }, _('Action')) ]) ]); max = 0; - if (content.data.requests) { + if (content.requests) { var button; - max = content.data.requests.length; + max = content.requests.length; for (var i = 0; i < max; i++) { - if (content.data.requests[i].rc === 'NX') { + if (content.requests[i].rc === 'NX') { button = E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-positive', 'style': 'word-break: inherit', 'name': 'whitelist', - 'value': content.data.requests[i].domain, + 'value': content.requests[i].domain, 'click': handleAction }, [ _('Whitelist...') ]); } else { button = E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-negative', 'style': 'word-break: inherit', 'name': 'blacklist', - 'value': content.data.requests[i].domain, + 'value': content.requests[i].domain, 'click': handleAction }, [ _('Blacklist...') ]); } rows_requests.push([ - content.data.requests[i].date, - content.data.requests[i].time, - content.data.requests[i].client, - content.data.requests[i].domain, - content.data.requests[i].rc, + content.requests[i].date, + content.requests[i].time, + content.requests[i].client, + '<a href="https://duckduckgo.com/?q=' + encodeURIComponent(content.requests[i].domain) + '&k1=-1&km=l&kh=1" target="_blank" rel="noreferrer noopener" title="Domain Lookup">' + content.requests[i].domain + '</a>', + content.requests[i].rc, button ]); } @@ -294,30 +295,34 @@ return view.extend({ return E('div', { 'class': 'cbi-map', 'id': 'map' }, [ E('div', { 'class': 'cbi-section' }, [ - E('p', _('This shows the last generated DNS Report, press the refresh button to get a current one.')), + E('p', _('This tab shows the last generated DNS Report, press the \'Refresh\' button to get a current one.')), E('p', '\xa0'), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Start Date')), - E('div', { 'class': 'cbi-value-field', 'id': 'start', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.start_date || '-') + ', ' + (content.data.start_time || '-'))]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('End Date')), - E('div', { 'class': 'cbi-value-field', 'id': 'end', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.end_date || '-') + ', ' + (content.data.end_time || '-'))]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('DNS Requests (total)')), - E('div', { 'class': 'cbi-value-field', 'id': 'total', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, content.data.total || '-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('DNS Requests (blocked)')), - E('div', { 'class': 'cbi-value-field', 'id': 'blocked', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.blocked || '-') + ' (' + (content.data.percent || '-') + ')')]), + E('div', { 'class': 'cbi-value' }, [ + E('div', { 'class': 'cbi-value-title', 'style': 'float:left;width:230px' }, _('Start Timestamp')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'float:left;color:#37c' }, (content.start_date || '-') + ', ' + (content.start_time || '-')) + ]), + E('div', { 'class': 'cbi-value' }, [ + E('div', { 'class': 'cbi-value-title', 'style': 'float:left;width:230px' }, _('End Timestamp')), + E('div', { 'class': 'cbi-value-title', 'id': 'end', 'style': 'float:left;color:#37c' }, (content.end_date || '-') + ', ' + (content.end_time || '-')) + ]), + E('div', { 'class': 'cbi-value' }, [ + E('div', { 'class': 'cbi-value-title', 'style': 'float:left;width:230px' }, _('Total DNS Requests')), + E('div', { 'class': 'cbi-value-title', 'id': 'total', 'style': 'float:left;color:#37c' }, content.total || '-') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('div', { 'class': 'cbi-value-title', 'style': 'float:left;width:230px' }, _('Blocked DNS Requests')), + E('div', { 'class': 'cbi-value-title', 'id': 'blocked', 'style': 'float:left;color:#37c' }, (content.blocked || '-') + ' (' + (content.percent || '-') + ')') + ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-apply', 'click': ui.createHandlerFn(this, function() { return handleAction('query'); }) }, [ _('Blocklist Query...') ]), '\xa0\xa0\xa0', E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, function() { return handleAction('refresh'); }) diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js index 9610735d97..5c6b833141 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js @@ -10,7 +10,7 @@ /* button handling */ -async function handleAction(ev) { +function handleAction(ev) { if (ev === 'timer') { L.ui.showModal(_('Refresh Timer'), [ E('p', _('To keep your adblock lists up-to-date, you should setup an automatic update job for these lists.')), @@ -26,7 +26,7 @@ async function handleAction(ev) { ]), E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ E('label', { 'class': 'cbi-input-select', 'style': 'padding-top:.5em' }, [ - E('h5', _('Set/Replace a new adblock job')), + E('h5', _('Set a new adblock job')), E('select', { 'class': 'cbi-input-select', 'id': 'timerA' }, [ E('option', { 'value': 'start' }, 'Start'), E('option', { 'value': 'reload' }, 'Reload'), @@ -52,21 +52,40 @@ async function handleAction(ev) { _('The day of the week (opt., values: 1-7 possibly sep. by , or -)') ]) ]), + E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ + E('label', { 'class': 'cbi-input-select', 'style': 'padding-top:.5em' }, [ + E('h5', _('Remove an existing job')), + E('input', { 'class': 'cbi-input-text', 'id': 'lineno', 'maxlength': '2' }, [ + ]), + '\xa0\xa0\xa0', + _('Line number to remove') + ]) + ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', E('button', { 'class': 'btn cbi-button-action', 'click': ui.createHandlerFn(this, function(ev) { + var lineno = document.getElementById('lineno').value; var action = document.getElementById('timerA').value; var hours = document.getElementById('timerH').value; var minutes = document.getElementById('timerM').value || '0'; var days = document.getElementById('timerD').value || '*'; if (hours) { - L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['timer', action, hours, minutes, days])) + L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['timer', 'add', action, hours, minutes, days])) + .then(function(res) { + if (res) { + ui.addNotification(null, E('p', _('The Refresh Timer could not been updated.')), 'error'); + } else { + ui.addNotification(null, E('p', _('The Refresh Timer has been updated.')), 'info'); + } + }); + } else if (lineno) { + L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['timer', 'remove', lineno])) .then(function(res) { if (res) { ui.addNotification(null, E('p', _('The Refresh Timer could not been updated.')), 'error'); @@ -83,7 +102,7 @@ async function handleAction(ev) { }, _('Save')) ]) ]); - L.resolveDefault(fs.read_direct('/etc/crontabs/root'), ' ') + L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['timer', 'list'])) .then(function(res) { document.getElementById('cronView').value = res.trim(); }); @@ -91,33 +110,18 @@ async function handleAction(ev) { return } - if (ev === 'suspend') { - if (document.getElementById('status') && document.getElementById('btn_suspend') && document.getElementById('status').textContent.substr(0,6) === 'paused') { - document.querySelector('#btn_suspend').textContent = 'Suspend'; - ev = 'resume'; - } else if (document.getElementById('status') && document.getElementById('btn_suspend')) { - document.querySelector('#btn_suspend').textContent = 'Resume'; - } + if (document.getElementById('status') && document.getElementById('status').textContent.substr(0,6) === 'paused') { + ev = 'resume'; } - poll.start(); fs.exec_direct('/etc/init.d/adblock', [ev]) - var running = 1; - while (running === 1) { - await new Promise(r => setTimeout(r, 1000)); - L.resolveDefault(fs.read_direct('/var/run/adblock.pid')).then(function(res) { - if (!res) { - running = 0; - } - }) - } - poll.stop(); } return view.extend({ load: function() { return Promise.all([ L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['list']), {}), + L.resolveDefault(fs.read_direct('/etc/adblock/adblock.categories'), ''), uci.load('adblock') ]); }, @@ -136,15 +140,22 @@ return view.extend({ var info = JSON.parse(res); var status = document.getElementById('status'); if (status && info) { - status.textContent = (info.data.adblock_status || '-') + ' / ' + (info.data.adblock_version || '-'); - if (info.data.adblock_status === "running") { + status.textContent = (info.adblock_status || '-') + ' / ' + (info.adblock_version || '-'); + if (info.adblock_status === "running") { if (!status.classList.contains("spinning")) { status.classList.add("spinning"); } } else { if (status.classList.contains("spinning")) { status.classList.remove("spinning"); - poll.stop(); + if (document.getElementById('btn_suspend')) { + if (status.textContent.substr(0,6) === 'paused') { + document.querySelector('#btn_suspend').textContent = 'Resume'; + } + if (document.getElementById('status').textContent.substr(0,7) === 'enabled') { + document.querySelector('#btn_suspend').textContent = 'Suspend'; + } + } } } if (status.textContent.substr(0,6) === 'paused' && document.getElementById('btn_suspend')) { @@ -158,43 +169,43 @@ return view.extend({ } var domains = document.getElementById('domains'); if (domains && info) { - domains.textContent = parseInt(info.data.blocked_domains, 10).toLocaleString() || '-'; + domains.textContent = parseInt(info.blocked_domains, 10).toLocaleString() || '-'; } var sources = document.getElementById('sources'); var src_array = []; if (sources && info) { - for (var i = 0; i < info.data.active_sources.length; i++) { - if (i < info.data.active_sources.length-1) { - src_array += info.data.active_sources[i].source + ', '; + for (var i = 0; i < info.active_sources.length; i++) { + if (i < info.active_sources.length-1) { + src_array += info.active_sources[i].source + ', '; } else { - src_array += info.data.active_sources[i].source + src_array += info.active_sources[i].source } } sources.textContent = src_array || '-'; } var backend = document.getElementById('backend'); if (backend && info) { - backend.textContent = info.data.dns_backend || '-'; + backend.textContent = info.dns_backend || '-'; } var utils = document.getElementById('utils'); if (utils && info) { - utils.textContent = info.data.run_utils || '-'; + utils.textContent = info.run_utils || '-'; } var ifaces = document.getElementById('ifaces'); if (ifaces && info) { - ifaces.textContent = info.data.run_ifaces || '-'; + ifaces.textContent = info.run_ifaces || '-'; } var dirs = document.getElementById('dirs'); if (dirs && info) { - dirs.textContent = info.data.run_directories || '-'; + dirs.textContent = info.run_directories || '-'; } var flags = document.getElementById('flags'); if (flags && info) { - flags.textContent = info.data.run_flags || '-'; + flags.textContent = info.run_flags || '-'; } var run = document.getElementById('run'); if (run && info) { - run.textContent = info.data.last_run || '-'; + run.textContent = info.last_run || '-'; } }); }, 1); @@ -206,43 +217,52 @@ return view.extend({ s.render = L.bind(function(view, section_id) { return E('div', { 'class': 'cbi-section' }, [ E('h3', _('Information')), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Status / Version')), - E('div', { 'class': 'cbi-value-field spinning', 'id': 'status', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'\xa0')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Blocked Domains')), - E('div', { 'class': 'cbi-value-field', 'id': 'domains', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Sources')), - E('div', { 'class': 'cbi-value-field', 'id': 'sources', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('DNS Backend')), - E('div', { 'class': 'cbi-value-field', 'id': 'backend', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Utils')), - E('div', { 'class': 'cbi-value-field', 'id': 'utils', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Interfaces')), - E('div', { 'class': 'cbi-value-field', 'id': 'ifaces', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Directories')), - E('div', { 'class': 'cbi-value-field', 'id': 'dirs', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')), - E('div', { 'class': 'cbi-value-field', 'id': 'flags', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), - E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Last Run')), - E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Status / Version')), + E('div', { 'class': 'cbi-value-field spinning', 'id': 'status', 'style': 'color:#37c' },'\xa0') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Blocked Domains')), + E('div', { 'class': 'cbi-value-field', 'id': 'domains', 'style': 'color:#37c' },'-') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Sources')), + E('div', { 'class': 'cbi-value-field', 'id': 'sources', 'style': 'color:#37c' },'-') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('DNS Backend')), + E('div', { 'class': 'cbi-value-field', 'id': 'backend', 'style': 'color:#37c' },'-') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Utils')), + E('div', { 'class': 'cbi-value-field', 'id': 'utils', 'style': 'color:#37c' },'-') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Interfaces')), + E('div', { 'class': 'cbi-value-field', 'id': 'ifaces', 'style': 'color:#37c' },'-') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Directories')), + E('div', { 'class': 'cbi-value-field', 'id': 'dirs', 'style': 'color:#37c' },'-') + ]), + E('div', { 'class': 'cbi-value' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')), + E('div', { 'class': 'cbi-value-field', 'id': 'flags', 'style': 'color:#37c' },'-') + ]), + 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: 'right' }, [ E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-apply', 'click': ui.createHandlerFn(this, function() { return handleAction('timer'); }) }, [ _('Refresh Timer...') ]), '\xa0\xa0\xa0', E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-apply', 'id': 'btn_suspend', 'click': ui.createHandlerFn(this, function() { return handleAction('suspend'); @@ -250,11 +270,18 @@ return view.extend({ }, [ _('Suspend') ]), '\xa0\xa0\xa0', E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, function() { - return handleAction('start'); + return handleAction('reload'); }) - }, [ _('Refresh') ]) + }, [ _('Reload') ]), + '\xa0\xa0\xa0', + E('button', { + 'class': 'btn cbi-button cbi-button-negative', + 'click': ui.createHandlerFn(this, function() { + return handleAction('restart'); + }) + }, [ _('Restart') ]) ]) ]); }, o, this); @@ -268,15 +295,9 @@ return view.extend({ s.tab('general', _('General Settings')); s.tab('additional', _('Additional Settings')); s.tab('adv_dns', _('Advanced DNS Settings')); - s.tab('adv_report', _('Advanced Report Settings'), _('Changes on this tab needs a full adblock service restart to take effect.<br /><p> </p>')); + s.tab('adv_report', _('Advanced Report Settings')); s.tab('adv_email', _('Advanced E-Mail Settings')); - s.tab('sources', _('Blocklist Sources'), _('List of supported and fully pre-configured adblock sources, already active sources are pre-selected.<br /> \ - <b><em>To avoid OOM errors, please do not select too many lists!</em></b><br /> \ - List size information with the respective domain ranges as follows:<br /> \ - • <b>S</b> (-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices,<br /> \ - • <b>XL</b> (80k-200k) should work for 256-512 MByte devices,<br /> \ - • <b>XXL</b> (200k-) needs more RAM and Multicore support, e.g. x86 or raspberry devices.<br /> \ - <p> </p>')); + s.tab('sources', _('Blocklist Sources')); /* general settings tab @@ -290,12 +311,25 @@ return view.extend({ o.nocreate = true; o.rmempty = true; - o = s.taboption('general', form.Flag, 'adb_forcedns', _('Force Local DNS'), _('Redirect all DNS queries from \'lan\' zone to the local DNS resolver, applies to UDP and TCP protocol.')); + o = s.taboption('general', form.Flag, 'adb_forcedns', _('Force Local DNS'), _('Redirect all DNS queries from specified zones to the local DNS resolver, applies to UDP and TCP protocol.')); o.rmempty = false; - o = s.taboption('general', form.Value, 'adb_portlist', _('Local DNS Ports'), _('Space separated list of DNS-related firewall ports which should be forced locally.')); + o = s.taboption('general', widgets.ZoneSelect, 'adb_zonelist', _('Forced Zones'), _('Firewall source zones that should be forced locally.')); + o.depends('adb_forcedns', '1'); + o.unspecified = true; + o.multiple = true; + o.nocreate = true; + o.rmempty = true; + + o = s.taboption('general', form.DynamicList, 'adb_portlist', _('Forced Ports'), _('Firewall ports that should be forced locally.')); o.depends('adb_forcedns', '1'); - o.placeholder = '53 853 5353'; + o.unspecified = true; + o.multiple = true; + o.nocreate = false; + o.datatype = 'port'; + o.value('53'); + o.value('853'); + o.value('5353'); o.rmempty = true; o = s.taboption('general', form.Flag, 'adb_safesearch', _('Enable SafeSearch'), _('Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and pixabay.')); @@ -344,6 +378,8 @@ return view.extend({ o.rmempty = true; o = s.taboption('additional', form.ListValue, 'adb_maxqueue', _('Download Queue'), _('Size of the download queue for download processing (incl. sorting, merging etc.) in parallel.')); + o.value('1'); + o.value('2'); o.value('4'); o.value('8'); o.value('16'); @@ -359,20 +395,20 @@ return view.extend({ o.default = 1 o.rmempty = false; - o = s.taboption('additional', form.Value, 'adb_backupdir', _('Backup Directory'), _('Target directory for blocklist backups. \ - Default is \'/tmp\', please use preferably an usb stick or another local disk.')); + o = s.taboption('additional', form.Value, 'adb_backupdir', _('Backup Directory'), _('Target directory for blocklist backups.')); o.depends('adb_backup', '1'); - o.placeholder = '/tmp'; + o.placeholder = '/tmp/adblock-Backup'; o.rmempty = true; o = s.taboption('additional', form.ListValue, 'adb_fetchutil', _('Download Utility'), _('List of supported and fully pre-configured download utilities.')); + o.value('', _('- unspecified -')); o.value('uclient-fetch'); o.value('wget'); o.value('curl'); o.value('aria2c'); - o.rmempty = false; + o.rmempty = true; - o = s.taboption('additional', form.Value, 'adb_fetchparm', _('Download Parameters'), _('Special config options for the selected download utility.')) + o = s.taboption('additional', form.Value, 'adb_fetchparm', _('Download Parameters'), _('Special config options for the selected download utility.')); o.rmempty = true; /* @@ -380,12 +416,13 @@ return view.extend({ */ o = s.taboption('adv_dns', form.ListValue, 'adb_dns', _('DNS Backend'), _('List of supported DNS backends with their default list directory. \ To overwrite the default path use the \'DNS Directory\' option.')); + o.value('', _('- unspecified -')); o.value('dnsmasq', _('dnsmasq (/tmp/dnsmasq.d)')); o.value('unbound', _('unbound (/var/lib/unbound)')); o.value('named', _('named (/var/lib/bind)')); o.value('kresd', _('kresd (/etc/kresd)')); o.value('raw', _('raw (/tmp)')); - o.rmempty = false; + o.rmempty = true; o = s.taboption('adv_dns', form.Value, 'adb_dnsdir', _('DNS Directory'), _('Target directory for the generated blocklist \'adb_list.overall\'.')); o.placeholder = '/tmp'; @@ -401,10 +438,6 @@ return view.extend({ o.placeholder = 'example.com'; o.rmempty = true; - o = s.taboption('adv_dns', form.Flag, 'adb_dnsfilereset', _('DNS File Reset'), _('Resets the final DNS blocklist \'adb_list.overall\' after DNS backend loading. \ - Please note: This option starts a small ubus/adblock monitor in the background.')); - o.rmempty = false; - o = s.taboption('adv_dns', form.Flag, 'adb_dnsflush', _('Flush DNS Cache'), _('Flush the DNS Cache before adblock processing as well.')); o.rmempty = true; @@ -427,14 +460,17 @@ return view.extend({ /* advanced report settings tab */ + o = s.taboption('adv_report', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = '<em><b>Changes on this tab needs a full adblock service restart to take effect.</b></em>'; + o = s.taboption('adv_report', widgets.DeviceSelect, 'adb_repiface', _('Report Interface'), _('List of available network devices used by tcpdump.')); o.unspecified = true; o.nocreate = false; o.rmempty = true; - o = s.taboption('adv_report', form.Value, 'adb_reportdir', _('Report Directory'), _('Target directory for DNS related report files. \ - Default is \'/tmp\', please use preferably an usb stick or another local disk.')); - o.placeholder = '/tmp'; + o = s.taboption('adv_report', form.Value, 'adb_reportdir', _('Report Directory'), _('Target directory for DNS related report files.')); + o.placeholder = '/tmp/adblock-Report'; o.rmempty = true; o = s.taboption('adv_report', form.Value, 'adb_repchunkcnt', _('Report Chunk Count'), _('Report chunk count used by tcpdump.')); @@ -474,18 +510,102 @@ return view.extend({ /* blocklist sources tab */ + o = s.taboption('sources', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = '<em><b>List of supported and fully pre-configured adblock sources.</b></em><br /> \ + List size information with the respective domain ranges as follows:<br /> \ + • <b>S</b> (-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices,<br /> \ + • <b>XL</b> (80k-200k) should work for 256-512 MByte devices,<br /> \ + • <b>XXL</b> (200k-) needs more RAM and Multicore support, e.g. x86 or raspberry devices.<br /> \ + • <b>VAR</b> (50k-500k) variable size depending on the selection.<br />'; + + var name, size, focus, sources = []; + if (result[0]) { + sources = result[0].trim().split('\n'); + } + o = s.taboption('sources', form.MultiValue, 'adb_sources', _('Sources (Size, Focus)')); - var lines, name, size, focus; - lines = result[0].trim().split('\n'); - for (var i = 0; i < lines.length; i++) { - if (lines[i].match(/^\s+\+/)) { - name = lines[i].match(/^\s+\+\s(\w+)\s/)[1] || '-'; - size = lines[i].match(/^\s+\+\s\w+[\sx]+(\w+)/)[1] || '-'; - focus = lines[i].match(/^\s+\+\s\w+[\sx]+\w+\s+([\w\+]+)/)[1] || '-'; + for (var i = 0; i < sources.length; i++) { + if (sources[i].match(/^\s+\+/)) { + name = sources[i].match(/^\s+\+\s(\w+)\s/)[1] || '-'; + size = sources[i].match(/^\s+\+\s\w+[\sx]+(\w+)/)[1] || '-'; + focus = sources[i].match(/^\s+\+\s\w+[\sx]+\w+\s+([\w\+]+)/)[1] || '-'; o.value(name, name + ' (' + size + ', ' + focus + ')'); } } - o.rmempty = false; + o.optional = true; + o.rmempty = true; + + /* + prepare category data + */ + var code, category, list, path, categories = []; + if (result[1]) { + categories = result[1].trim().split('\n'); + } + + o = s.taboption('sources', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = '<em><b>Shallalist Archive Selection</b></em>'; + + o = s.taboption('sources', form.DynamicList, 'adb_sha_sources', _('Categories')); + for (var i = 0; i < categories.length; i++) { + code = categories[i].match(/^(\w+);/)[1].trim(); + if (code === 'sha') { + category = categories[i].match(/^\w+;(.*$)/)[1].trim(); + o.value(category); + } + } + o.optional = true; + o.rmempty = true; + + o = s.taboption('sources', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = '<em><b>UTCapitole Archive Selection</b></em>'; + + o = s.taboption('sources', form.DynamicList, 'adb_utc_sources', _('Categories')); + for (var i = 0; i < categories.length; i++) { + code = categories[i].match(/^(\w+);/)[1].trim(); + if (code === 'utc') { + category = categories[i].match(/^\w+;(.*$)/)[1].trim(); + o.value(category); + } + } + o.optional = true; + o.rmempty = true; + + o = s.taboption('sources', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = '<em><b>Energized List Selection</b></em>'; + + o = s.taboption('sources', form.DynamicList, 'adb_eng_sources', _('Variants')); + for (var i = 0; i < categories.length; i++) { + code = categories[i].match(/^(\w+);/)[1].trim(); + if (code === 'eng') { + list = categories[i].match(/^\w+;(.*);/)[1].trim(); + path = categories[i].match(/^.*;(.*$)/)[1].trim(); + o.value(path, list); + } + } + o.optional = true; + o.rmempty = true; + + o = s.taboption('sources', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = '<em><b>StevenBlack List Selection</b></em>'; + + o = s.taboption('sources', form.DynamicList, 'adb_stb_sources', _('Variants')); + for (var i = 0; i < categories.length; i++) { + code = categories[i].match(/^(\w+);/)[1].trim(); + if (code === 'stb') { + list = categories[i].match(/^\w+;(.*);/)[1].trim(); + path = categories[i].match(/^.*;(.*$)/)[1].trim(); + o.value(path, list); + } + } + o.optional = true; + o.rmempty = true; + return m.render(); }, handleReset: null diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js index 68c6644fb3..31e58d3c74 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js @@ -8,7 +8,7 @@ return view.extend({ return L.resolveDefault(fs.read_direct('/etc/adblock/adblock.whitelist'), ''); }, handleSave: function(ev) { - var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n').replace(/[^a-z0-9\.\-\#\n]/g, '')) + '\n'; + var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n'; return fs.write('/etc/adblock/adblock.whitelist', value) .then(function(rc) { document.querySelector('textarea').value = value; diff --git a/applications/luci-app-adblock/po/ar/adblock.po b/applications/luci-app-adblock/po/ar/adblock.po index 03da626b4e..5649c3c91b 100644 --- a/applications/luci-app-adblock/po/ar/adblock.po +++ b/applications/luci-app-adblock/po/ar/adblock.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-04 18:32+0000\n" -"Last-Translator: DJEBRI Ahmed El Amine <djebri.emp@gmail.com>\n" +"PO-Revision-Date: 2021-03-08 13:04+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/ar/>\n" "Language: ar\n" @@ -9,13 +9,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- غير محدد -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "إجراء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "المصادر المفعّلة" @@ -44,43 +49,43 @@ msgstr "أضف هذا النطاق (الفرعي) لقائمتك السوداء msgid "Add this (sub-)domain to your local whitelist." msgstr "أضف هذا النطاق (الفرعي) لقائمتك المسموحة المحلية." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "قائمة حظر إضافية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "إعدادات إضافية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "وقت انتظار إضافي بالثواني قبل الشروع في تطبيق إعدادات أدبلوك." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "إعدادات DNS متقدمة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "إعدادات متقدمة للبريد الالكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "إعدادات متقدمة للتقارير" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "إجابة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "مجلد النسخ الاحتياطي" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "مجلد التخزين المؤقت الأساسي" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -97,19 +102,23 @@ msgstr "" "تم حفظ التغييرات في القائمة السوداء. رجاء قم بتحديث قوائم أدبلوك الخاصة بك " "لتظهر التغييرات." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "القائمة السوداء..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "طلبات DNS المحظورة" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "نطاق محظور" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "نطاقات محظورة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "نسخة احتياطية لقائمة الحظر" @@ -117,15 +126,15 @@ msgstr "نسخة احتياطية لقائمة الحظر" msgid "Blocklist Query" msgstr "استعلام لقائمة الحظر" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "استعلام لقائمة الحظر..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "مصادر قائمة الحظر" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -137,25 +146,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "إلغاء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "" -"تحتاج التغييرات في علامة التبويب هذه إلى إعادة تشغيل خدمة أدبلوك كاملة حتى " -"تصبح نافذة المفعول.<br /><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "فئات" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "العميل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -167,505 +173,519 @@ msgstr "" "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" > راجع المساعدة على الشبكة</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "العدد" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" +"إنشاء نسخ احتياطية لقائمة الحظر المضغوطة ، سيتم استخدامها في حالة حدوث أخطاء " +"في التنزيل أو أثناء بدء التشغيل." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" -msgstr "" +msgstr "DNS الخلفية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" +msgstr "دليل DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" -msgstr "" +msgstr "تقرير DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "" +msgstr "مهلة إعادة تشغيل DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" -msgstr "" +msgstr "تاريخ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "" +msgstr "تعطيل السماح DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" -msgstr "" +msgstr "تعطيل إعادة بدء DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" +"قم بتعطيل عمليات إعادة تشغيل adblock التي تم تشغيلها لخلفيات DNS مع وظائف " +"التحميل التلقائي / inotify." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "" +msgstr "تعطيل القائمة البيضاء الانتقائية لنظام أسماء النطاقات (مرور RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" -msgstr "" +msgstr "اختصاص" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "" +msgstr "تنزيل المعلمات" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "" +msgstr "تنزيل قائمة الانتظار" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" -msgstr "" +msgstr "تحميل الأداة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "" +msgstr "إعلام البريد الإلكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "" +msgstr "عدد إعلام البريد الإلكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "" +msgstr "ملف تعريف البريد الإلكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "عنوان مستقبل البريد الإلكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "" +msgstr "عنوان مرسل البريد الإلكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "" +msgstr "موضوع البريد الإلكتروني" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 msgid "Edit Blacklist" -msgstr "" +msgstr "تحرير القائمة السوداء" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:10 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43 msgid "Edit Whitelist" -msgstr "" +msgstr "تحرير القائمة البيضاء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "" +msgstr "تمكين SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "" +msgstr "تفعيل مرشحات البحث الآمن المعتدلة لموقع youtube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "" +msgstr "قم بتمكين خدمة adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "تمكين التسجيل المطول لتصحيح الأخطاء في حالة وجود أي أخطاء في المعالجة." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" -msgstr "ممكّن" +msgstr "مفعل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "الطابع الزمني للانتهاء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." msgstr "" +"فرض البحث الآمن على google و bing و duckduckgo و yandex و youtube و pixabay." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "الوظائف الحالية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" -msgstr "" +msgstr "مجال بحث DNS خارجي" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" +"المجال الخارجي للتحقق من إعادة تشغيل DNS الخلفية بنجاح. يرجى ملاحظة: لتعطيل " +"هذا الاختيار ، قم بتعيين هذا الخيار على \"خطأ\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" -msgstr "" +msgstr "معايير التصفية مثل التاريخ أو المجال أو العميل (اختياري)" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "منافذ جدار الحماية التي يجب فرضها محليًا." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "مناطق مصدر جدار الحماية التي يجب فرضها محليًا." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" -msgstr "" +msgstr "مسح ذاكرة التخزين المؤقت DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." -msgstr "" +msgstr "امسح ذاكرة التخزين المؤقت ل DNS قبل معالجة adblock أيضًا." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" -msgstr "" +msgstr "فرض DNS المحلي" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "البوابات القسرية" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "مناطق قسرية" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" +"اجمع حركة مرور الشبكة ذات الصلة ب DNS عبر tcpdump وقدم تقرير DNS عند الطلب. " +"يرجى ملاحظة: هذا يحتاج إلى تثبيت حزمة إضافية \"tcpdump-mini\" وإعادة تشغيل " +"خدمة adblock كاملة لتصبح سارية المفعول." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "الاعدادات العامة" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "" +msgstr "منح حق الوصول إلى Adblock لتطبيق LuCI" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" -msgstr "" +msgstr "معلومة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "" +msgstr "دليل السجن" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" -msgstr "" +msgstr "آخر تشغيل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "" +msgstr "أحدث طلبات DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "تقييد البحث الآمن" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." -msgstr "" +msgstr "قصر البحث الآمن على مقدمي خدمات معينين." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "رقم الخط المراد إزالته" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." -msgstr "" +msgstr "قائمة بأجهزة الشبكة المتاحة التي يستخدمها برنامج tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" +"قائمة واجهات الشبكة المتاحة لبدء تشغيل adblock. اختر \"غير محدد\" لاستخدام " +"مهلة بدء التشغيل الكلاسيكية بدلاً من مشغل الشبكة." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" +"قائمة بالخلفيات الخلفية لنظام أسماء النطاقات المدعومة مع دليل القائمة " +"الافتراضي الخاص بها. للكتابة فوق المسار الافتراضي ، استخدم خيار \"دليل DNS\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" +msgstr "قائمة أدوات التنزيل المدعومة والمجهزة بالكامل مسبقًا" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "" +msgstr "عرض السجل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" -msgstr "" +msgstr "خدمة ذات أولوية منخفضة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" -msgstr "" +msgstr "الاسم / عنوان IP" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "" +msgstr "لا توجد نتائج استعلام!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" -msgstr "" +msgstr "لا توجد سجلات ذات صلة ب adblock حتى الآن!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" msgstr "نظرة عامة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" +"الملف الشخصي المستخدم من قبل \"msmtp\" لرسائل البريد الإلكتروني الخاصة " +"بإشعار حظر الإعلانات." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" -msgstr "" +msgstr "استعلام" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82 msgid "Query active blocklists and backups for a specific domain." -msgstr "" +msgstr "الاستعلام عن قوائم الحظر والنسخ الاحتياطية النشطة لمجال معين." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" +"ارفع عدد الإشعارات للحصول على رسائل البريد الإلكتروني إذا كان العدد الإجمالي " +"لقائمة الحظر أقل من الحد المعطى أو مساويًا له." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." -msgstr "" +msgstr "عنوان المستلم لرسائل البريد الإلكتروني الخاصة بإشعار adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" +"أعد توجيه جميع استعلامات DNS من مناطق محددة إلى محلل DNS المحلي ، ينطبق على " +"بروتوكول UDP و TCP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" +"تقليل أولوية معالجة خلفية adblock لأخذ موارد أقل من النظام. يرجى ملاحظة: هذا " +"التغيير يتطلب إعادة تشغيل خدمة adblock كاملة لتصبح سارية المفعول." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" -msgstr "" +msgstr "نعش الذاكرة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" -msgstr "" +msgstr "قم بتحديث تقرير DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "تحديث الموقت" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." -msgstr "" +msgstr "تحديث المؤقت ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." -msgstr "" +msgstr "تنعيش الذاكرة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" -msgstr "" +msgstr "استرخاء البحث الآمن" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "إعادة تحميل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "إزالة وظيفة موجودة" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" -msgstr "" +msgstr "تقرير عدد القطع" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" -msgstr "" +msgstr "تقرير حجم القطعة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" -msgstr "" +msgstr "دليل التقارير" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" -msgstr "" +msgstr "واجهة التقرير" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" -msgstr "" +msgstr "تقرير المنافذ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." -msgstr "" +msgstr "الإبلاغ عن عدد القطع المستخدم بواسطة tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." -msgstr "" +msgstr "الإبلاغ عن حجم القطعة المستخدم بواسطة tcpdump بالميجابايت." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "إعادة تشغيل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" -msgstr "" +msgstr "نتيجة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" -msgstr "" +msgstr "تشغيل الدلائل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" -msgstr "" +msgstr "تشغيل الإشارات" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" -msgstr "" +msgstr "تشغيل واجهات" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" -msgstr "" +msgstr "تشغيل الأدوات" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" -msgstr "" +msgstr "إحفض" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" +"إرسال رسائل البريد الإلكتروني الخاصة بالإشعار عن حظر الإعلانات. يرجى ملاحظة: " +"هذا يحتاج إلى تثبيت حزمة 'msmtp' إضافية." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." -msgstr "" +msgstr "عنوان المرسل لرسائل البريد الإلكتروني الخاصة بإشعار حظر الإعلانات." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "" +msgid "Set a new adblock job" +msgstr "تعيين وظيفة adblock جديدة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" -msgstr "" +msgstr "إعدادات" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" +"حجم قائمة انتظار التنزيل لمعالجة التنزيل (بما في ذلك الفرز والدمج وما إلى " +"ذلك) بالتوازي." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" -msgstr "" +msgstr "المصادر (الحجم والتركيز)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." -msgstr "" +msgstr "قائمة منافذ مفصولة بمسافة يستخدمها tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "خيارات التكوين الخاصة لأداة التنزيل المساعدة المحددة." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "بدء الطابع الزمني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" -msgstr "" +msgstr "بدء واجهة التشغيل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "" +msgstr "الحالة / الإصدار" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" -msgstr "" +msgstr "تعليق" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." +msgstr "الدليل الهدف لملفات التقارير المتعلقة ب DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "الدليل الهدف للنسخ الاحتياطية لقائمة الحظر." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." -msgstr "" +msgstr "الدليل المستهدف لقائمة الحظر التي تم إنشاؤها \"adb_list.overall\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." -msgstr "" +msgstr "الدليل المستهدف لقائمة منع السجن التي تم إنشاؤها \"adb_list.jail\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "تعذر تحديث مؤقت التحديث." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "تم تحديث مؤقت التحديث." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "يوم الأسبوع (اختياري ، القيم: من 1 إلى 7 من المحتمل أن يفصل بينها أو -)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "قسم الساعات (مطلوب ، النطاق: 0-23)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "جزء الدقائق (اختياري ، النطاق: 0-59)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28 msgid "The syslog output, pre-filtered for adblock related messages only." -msgstr "" +msgstr "ناتج سجل النظام ، تمت تصفيته مسبقًا للرسائل ذات الصلة بحظر الإعلان فقط." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:23 msgid "" @@ -673,6 +693,9 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"هذه قائمة حظر الإعلانات المحلية لرفض بعض المجالات (الفرعية) دائمًا. <br /> " +"ملاحظة: إضافة مجال واحد فقط في كل سطر. يُسمح بالتعليقات المقدمة ب \"#\" - لا " +"يُسمح بعناوين IP و wildcards و regex." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23 msgid "" @@ -680,47 +703,63 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"هذه هي القائمة البيضاء المحلية لحظر الإعلانات للسماح دائمًا بنطاقات (فرعية) " +"معينة. <br /> يُرجى ملاحظة: إضافة مجال واحد فقط في كل سطر. يُسمح بالتعليقات " +"المقدمة ب \"#\" - لا يُسمح بعناوين IP و wildcards و regex." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" +"تعرض علامة التبويب هذه آخر تقرير DNS تم إنشاؤه ، اضغط على الزر \"تحديث\" " +"للحصول على تقرير حالي." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" -msgstr "" +msgstr "وقت" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." -msgstr "" +msgstr "حان الوقت لانتظار إعادة تشغيل خلفية DNS ناجحة." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16 msgid "" "To keep your adblock lists up-to-date, you should setup an automatic update " "job for these lists." msgstr "" +"للحفاظ على تحديث قوائم Adblock الخاصة بك ، يجب عليك إعداد مهمة تحديث تلقائي " +"لهذه القوائم." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" -msgstr "" +msgstr "أفضل 10 إحصائيات" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." -msgstr "" +msgstr "موضوع رسائل البريد الإلكتروني الخاصة بإشعار adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "إجمالي طلبات DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" -msgstr "" +msgstr "تأخير الزناد" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "تعذر حفظ التغييرات: s%" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "المتغيرات" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" -msgstr "" +msgstr "تسجيل مطول للتصحيح" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:69 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:15 @@ -728,31 +767,40 @@ msgid "" "Whitelist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" +"تم حفظ تغييرات القائمة البيضاء. قم بتحديث قوائم منع الإعلانات التي تسري " +"التغييرات عليها." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." -msgstr "" +msgstr "القائمة البيضاء ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" -msgstr "" +msgstr "نظام اسم المجال التخزين المؤقت dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" -msgstr "" +msgstr "محلل العقد الخفي kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" -msgstr "" +msgstr "مجموعة نتائج أعلى حجم." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" -msgstr "" +msgstr "نظام أسماء النطاقات named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" -msgstr "" +msgstr "خام (/ tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" -msgstr "" +msgstr "غير ملزم (/var/lib/unbound)" + +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "تحتاج التغييرات في علامة التبويب هذه إلى إعادة تشغيل خدمة أدبلوك كاملة " +#~ "حتى تصبح نافذة المفعول.<br /><p> </p>" diff --git a/applications/luci-app-adblock/po/bg/adblock.po b/applications/luci-app-adblock/po/bg/adblock.po index c9a8f8d84d..61a50b2a10 100644 --- a/applications/luci-app-adblock/po/bg/adblock.po +++ b/applications/luci-app-adblock/po/bg/adblock.po @@ -4,11 +4,16 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -37,43 +42,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -86,19 +91,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -106,15 +115,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -123,23 +132,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,109 +155,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -263,31 +259,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -297,40 +293,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -338,80 +350,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -424,11 +424,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -436,35 +436,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -472,162 +471,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -661,17 +657,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -681,15 +677,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -698,7 +698,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -709,30 +714,30 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/bn_BD/adblock.po b/applications/luci-app-adblock/po/bn_BD/adblock.po index 14271cf76f..0065261914 100644 --- a/applications/luci-app-adblock/po/bn_BD/adblock.po +++ b/applications/luci-app-adblock/po/bn_BD/adblock.po @@ -1,22 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-28 13:41+0000\n" -"Last-Translator: Oymate <dhruboadittya96@gmail.com>\n" +"PO-Revision-Date: 2021-03-05 07:34+0000\n" +"Last-Translator: Anup Debnath <anupdebnath7@gmail.com>\n" "Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsadblock/bn_BD/>\n" "Language: bn_BD\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0.2\n" +"X-Generator: Weblate 4.5.1-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "সক্রিয় উৎস" +msgstr "চালু উৎস" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -43,43 +48,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -92,19 +97,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -112,15 +121,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -129,23 +138,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -153,109 +161,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -269,31 +265,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -303,40 +299,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -344,80 +356,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -430,11 +430,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -442,35 +442,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -478,162 +477,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -667,17 +663,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -687,15 +683,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -704,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -715,30 +720,30 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/ca/adblock.po b/applications/luci-app-adblock/po/ca/adblock.po index 21ccb3e34d..0e12dfc17a 100644 --- a/applications/luci-app-adblock/po/ca/adblock.po +++ b/applications/luci-app-adblock/po/ca/adblock.po @@ -1,22 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-10-25 18:01+0000\n" -"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"PO-Revision-Date: 2021-03-08 13:03+0000\n" +"Last-Translator: BenRoura <benrouravkg@gmail.com>\n" "Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/ca/>\n" "Language: ca\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1-dev\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- no especificat -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Acció" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "" +msgstr "Fonts actives" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -25,11 +30,11 @@ msgstr "Blocador d’anuncis" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 msgid "Adblock action" -msgstr "" +msgstr "Acció d'Adblock" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "" +msgstr "Afegir domini a la llista negra" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" @@ -43,45 +48,45 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Retard addicional en segons de l’activador abans que comenci el processament " "del blocador d’anuncis." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" -msgstr "" +msgstr "Paràmetres DNS avançats" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Paràmetres de correu avançats" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Resposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Directori de còpies de seguretat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -94,19 +99,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." -msgstr "" +msgstr "Llista negra..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Peticions DNS blocades" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Domini blocat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "" +msgstr "Dominis blocats" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -114,15 +123,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Fonts de la llista negra" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -131,23 +140,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" -msgstr "" +msgstr "Cancel•lar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "Categories" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -155,109 +163,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Recompte" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Directori del DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Reinicialització de fitxers del DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domini" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "" +msgstr "Paràmetres de descàrrega" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "" +msgstr "Cua de descàrregues" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Utilitat de baixades" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "Notificació per correu" +msgstr "Notificació de correu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "Adreça de destinatari de correu" +msgstr "Adreça del destinatari de correu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -271,31 +267,31 @@ msgstr "Edita la llista negra" msgid "Edit Whitelist" msgstr "Edita la llista blanca" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Data de finalització" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -305,121 +301,125 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Purga la memòria cau del DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Força el DNS local" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "Paràmetres generals" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Darrera execució" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." -msgstr "Llista d’utilitats de baixada admeses i plenament preconfigurades." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" +msgstr "Llista d’utilitats de descàrrega admeses i plenament preconfigurades." #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Servei de prioritat baixa" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -432,11 +432,11 @@ msgstr "" msgid "Overview" msgstr "Visió de conjunt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Consulta" @@ -444,35 +444,34 @@ msgstr "Consulta" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Actualitza" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -480,162 +479,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "Torna a carregar" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "Reiniciar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" -msgstr "Desa" +msgstr "Desar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" -msgstr "" +msgstr "Paràmetres" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Data d’inici" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -669,17 +665,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -689,15 +685,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -706,7 +706,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Enregistrament detallat de depuració" @@ -717,34 +722,43 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" +#~ msgid "DNS File Reset" +#~ msgstr "Reinicialització de fitxers del DNS" + +#~ msgid "End Date" +#~ msgstr "Data de finalització" + +#~ msgid "Start Date" +#~ msgstr "Data d’inici" + #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" diff --git a/applications/luci-app-adblock/po/cs/adblock.po b/applications/luci-app-adblock/po/cs/adblock.po index 387849c2e0..94f9f6293a 100644 --- a/applications/luci-app-adblock/po/cs/adblock.po +++ b/applications/luci-app-adblock/po/cs/adblock.po @@ -1,22 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-04 05:03+0000\n" -"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"PO-Revision-Date: 2020-10-27 21:26+0000\n" +"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/cs/>\n" "Language: cs\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akce" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "" +msgstr "Aktivní zdroje" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -25,66 +30,68 @@ msgstr "Blokování reklamy Adblock" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 msgid "Adblock action" -msgstr "" +msgstr "Akce Adblocku" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "" +msgstr "Přidat doménu na blacklist" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" -msgstr "" +msgstr "Přidat doménu na whitelist" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." -msgstr "" +msgstr "Přidejte tuto (sub)doménu na místní blacklist." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47 msgid "Add this (sub-)domain to your local whitelist." -msgstr "" +msgstr "Přidat tuto (sub)doménu na místní whitelist." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "" +msgstr "Další nastavení" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatečné zpoždění v sekundách před začátkem zpracování blokování reklamy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" -msgstr "" +msgstr "Pokročilá nastavení DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Pokročilá nastavení e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" -msgstr "" +msgstr "Pokročilá nastavení hlášení" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpověd" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Záložní adresář" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "" +msgstr "Základní dočasný adresář" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." msgstr "" +"Základní adresář pro dočasné soubory všech provozních operací, např. " +"stahování, řazení, slučování atd." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 @@ -92,36 +99,42 @@ msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" +"Změny blacklistu byly uloženy. Obnovte své adblockové seznamy, aby se změny " +"projevily." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." +msgstr "Blacklist..." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "" +msgstr "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" -msgstr "" +msgstr "Záloha blokovacího seznamu" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" -msgstr "" +msgstr "Dotaz na blokovací seznam" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." -msgstr "" +msgstr "Dotaz na blokovací seznam..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Zdroje seznamů blokování" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -130,23 +143,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" -msgstr "" +msgstr "Storno" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -154,111 +166,101 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Počet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" +"Vytváří komprimované zálohy blokovacího seznamu, budou použity v případě " +"chyb při stahování nebo po příštím spuštění." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Adresář DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Resetování souboru DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Datum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Doména" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "" +msgstr "Parametry stahování" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "" +msgstr "Fronta stahování" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Nástroj pro stahování" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Oznámení e-mailem" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "" +msgstr "Počet e-mailových oznámení" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "" +msgstr "E-mailový profil" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "Adresa příjemce e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Adresa odesílatele e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "" +msgstr "Téma e-mailu" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 @@ -270,31 +272,31 @@ msgstr "Upravit blacklist" msgid "Edit Whitelist" msgstr "Upravit whitelist" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "" +msgstr "Povolit bezpečné vyhledávání (SafeSearch)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "" +msgstr "Povolit střední filtry SafeSearch pro youtube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "" +msgstr "Povolit službu adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Zapnuto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Datum ukončení" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -302,126 +304,130 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Stávající úlohy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Vyprázdnit mezipaměť DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Vynutit lokální DNS" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "Obecná nastavení" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" -msgstr "" +msgstr "Informace" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Poslední spuštění" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Seznam podporovaných a plně předkonfigurovaných nástrojů pro stahování." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Služba s nízkou prioritou" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" -msgstr "" +msgstr "Název / IP adresa" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "" +msgstr "Žádné výsledky dotazu!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" @@ -432,11 +438,11 @@ msgstr "" msgid "Overview" msgstr "Přehled" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Dotaz" @@ -444,35 +450,34 @@ msgstr "Dotaz" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "Adresa příjemce pro e-maily s upozorněním." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Aktualizovat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -480,162 +485,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Počet bloků sestavy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Velikost bloků sestavy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Adresář sestav" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Rozhraní sestavy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Uložit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Datum zahájení" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Pozastavit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Cílový adresář pro vygenerovaný blokovací seznam 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -669,17 +671,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Čas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -689,15 +691,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Prodleva spuštění" @@ -706,7 +712,12 @@ msgstr "Prodleva spuštění" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Podrobné protokolování ladění" @@ -717,34 +728,43 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" +#~ msgid "DNS File Reset" +#~ msgstr "Resetování souboru DNS" + +#~ msgid "End Date" +#~ msgstr "Datum ukončení" + +#~ msgid "Start Date" +#~ msgstr "Datum zahájení" + #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" diff --git a/applications/luci-app-adblock/po/de/adblock.po b/applications/luci-app-adblock/po/de/adblock.po index 41b3ed03fa..6fc23fca8b 100644 --- a/applications/luci-app-adblock/po/de/adblock.po +++ b/applications/luci-app-adblock/po/de/adblock.po @@ -1,20 +1,25 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-15 17:03+0000\n" -"Last-Translator: Paul Spooren <mail@aparcar.org>\n" +"PO-Revision-Date: 2021-02-08 04:46+0000\n" +"Last-Translator: Zocker1012 <julian.schoemer.1997@gmail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/de/>\n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- unbestimmt -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Aktion" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Aktive Quellen" @@ -43,45 +48,45 @@ msgstr "Füge diese (Sub-)Domain zur lokalen Blacklist." msgid "Add this (sub-)domain to your local whitelist." msgstr "Füge diese (Sub-)Domain zur lokalen Whiteklist." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "Zusätzliche Jail-Sperrliste" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Zusätzliche Einstellungen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Zusätzliche Verzögerung (in Sekunden) bis zur Verarbeitung durch den " "Werbeblocker." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Fortgeschrittene DNS Einstellungen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "Fortgeschrittene E-Mail Einstellungen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Fortgeschrittene Berichtseinstellungen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Antwort" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Backupverzeichnis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Basis-Temp-Verzeichnis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -98,19 +103,23 @@ msgstr "" "Änderung der Blackliste gespeichert. Aktualisiere deine Adblock-Liste, um " "die Änderungen zu übernehmen." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Blacklist..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Geblockte DNS-Anfragen" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Blockierte Domain" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "Geblockte Domains" +msgstr "Gesperrte Domains" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Sperrliste Backup" @@ -118,15 +127,15 @@ msgstr "Sperrliste Backup" msgid "Blocklist Query" msgstr "Sperrlistenabfrage" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Sperrlisten abfragen..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Blockierlisten-Quellen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -138,23 +147,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Abbrechen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -166,13 +174,13 @@ msgstr "" "github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" "\"_blank\" rel=\"noreferrer noopener\" >Dokumentation</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Anzahl" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." @@ -180,50 +188,38 @@ msgstr "" "Erzeuge komprimierte Backups der Sperrlisten, um die Sperrfunktion schon " "sofort ab dem Booten oder im Fall von Downloadfehlern zur Verfügung zu haben." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "DNS-Backend" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS-Verzeichnis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS-Datei zurücksetzen" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "DNS-Report" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "DNS Anforderungen (blockiert)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "DNS-Abfragen (gesamt)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "DNS-Restart-Timeout" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Datum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Deaktiviere DNS-Zulassen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" -msgstr "Deaktiviere DNS-Restarts" +msgstr "DNS-Neustarts deaktivieren" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -231,86 +227,88 @@ msgstr "" "Deaktiviere das Triggern von Neustarts des DNS-Backends durch Adblock per " "Autoload/inotify-Funktionsaufrufe." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Deaktiviere selektives DNS-Whitelisting (RPZ-Passthrough)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domäne" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "Downloadparameter" +msgstr "Download Parameter" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "Download-Warteschlange" +msgstr "Download Warteschlange" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Download-Werkzeug" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "E-Mail-Benachrichtigung" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "Email-Benachrichtigszähler" +msgstr "E-Mail Benachrichtigungszähler" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "Email-Profil" +msgstr "E-Mail-Profil" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "E-Mail-Empfängeradresse" +msgstr "E-Mail Empfängeradresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "Email-Absenderadresse" +msgstr "E-Mail Absenderadresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "Email-Betreff" +msgstr "E-Mail-Thema" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 msgid "Edit Blacklist" -msgstr "Blackliste bearbeiten" +msgstr "Blacklist bearbeiten" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:10 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43 msgid "Edit Whitelist" -msgstr "Whiteliste bearbeiten" +msgstr "Whitelist bearbeiten" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "Aktiviere SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "Aktiviere moderate SafeSearch-Filter für YouTube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Aktiviere den Adblock-Dienst." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "Aktiviere ausführliche Debug-Logs im Fehlerfall." +msgstr "" +"Aktivieren Sie die ausführliche Debug-Protokollierung bei " +"Verarbeitungsfehlern." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Aktiviert" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Enddatum" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Ende-Zeitstempel" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -320,11 +318,11 @@ msgstr "Erzwinge SafeSearch für Google, Bing, DuckDuckGo, Yandex und Pixabay." msgid "Existing job(s)" msgstr "Bestehende Job(s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" -msgstr "Externe DNS-Abfragedomain" +msgstr "Externe DNS Lookup Domain" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -332,23 +330,39 @@ msgstr "" "Externe Beispiel-Domain um einen erfolgreichen Neustart des DNS-Backend zu " "prüfen. Auf \"false\" setzen, um dies zu deaktivieren." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Filterkriterien wie z.B. Datum, Domain oder Client (optional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "Firewall-Ports, die lokal erzwungen/aufgelöst werden sollen." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "Firewall-Zonen, die lokal erzwungen/aufgelöst werden sollen." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "DNS-Cache leeren" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "DNS-Cache leeren, bevor mit Adblock-Verarbeitung fortgefahren wird." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" -msgstr "Lokales DNS erzwingen" +msgstr "Lokale DNS-Auflösung erzwingen" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Erzwungene Ports" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Erzwungene Zonen" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -358,7 +372,7 @@ msgstr "" "auf Abruf bereitstellen zu können. Hinweis: Hierzu muss das Paket \"tcpdump-" "mini\" installiert und der Adblock-Dienst danach neugestartet worden sein." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "Allgemeine Einstellungen" @@ -366,37 +380,41 @@ msgstr "Allgemeine Einstellungen" msgid "Grant access to LuCI app adblock" msgstr "Zugriff auf adblock LuCI app erlauten" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Informationen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "Jail-Verzeichnis" +msgstr "Sperrverzeichnis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" -msgstr "Letzter Lauf" +msgstr "Letzter Durchgang" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "Letzte DNS-Abfragen" +msgstr "Neueste DNS Anfragen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "SafeSearch einschränken" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." +msgstr "SafeSearch auf bestimmte Anbieter einschränken." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" "Liste an verfügbaren Netzwerkschnittstellen die von tcpdump verwendet werden " "können." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -405,7 +423,7 @@ msgstr "" "triggern. Wähle \"unspecified\", um einen herkömmlichen Start-Timeout-" "Mechanismuss anstatt eines Netzwerk-Triggers zu verwenden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -413,51 +431,26 @@ msgstr "" "Liste an unterstützten DNS-Backens und deren Standard-Listenverzeichnissen. " "Um einen Standardpfad zu überschreiben, nutze die \"DNS-Verzeichnis\"-Option." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"Liste von unterstützten und vollständig vorkonfigurierten Adblock-Quellen, " -"bereits aktivierte Quellen sind vorgewählt.<br /> <b><em> Falls zuviele " -"Listen aktiv sind, kann es zu Out-Of-Memory-Fehlern kommen!</em></b><br /> " -"Größenangaben für entsprechende Domain-Reichweiten sind:<br /> • " -"<b>S</b> (-10k), <b>M</b> (10k-30k) und <b>L</b> (30k-80k) sollten für 128MB-" -"Geräte ausreichen,<br /> • <b>XL</b> (80k-200k) sollten für " -"256-512MB-Geräte ausreichen,<br /> • <b>XXL</b> (200k-) benötigt " -"mehr RAM und zusätzlich eine Multicore-CPU, z.B entpsrechende x86- oder " -"RaspberryPi-Geräte.<br /> <p> </p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Liste der unterstützten und vollständig vorkonfigurierten Download-" "Hilfsprogramme." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Lokale DNS-Ports" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "Log-Ansicht" +msgstr "Protokollansicht" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Dienst mit niedriger Priorität" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Name / IP-Adresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Keine Abfrageergebnisse!" @@ -470,12 +463,12 @@ msgstr "Aktuell noch keine Adblock-Logs vorhanden!" msgid "Overview" msgstr "Übersicht" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" "\"msmtp\"-Profil, das für Adblock-Benachrichtigunsmails verwendet wird." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Abfrage" @@ -483,7 +476,7 @@ msgstr "Abfrage" msgid "Query active blocklists and backups for a specific domain." msgstr "Frage aktive Sperrlisten und Backups über eine spezifische Domain ab." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -491,19 +484,19 @@ msgstr "" "Erhöhe den Benachrichtigunszähler um Emails zu erhalten, wenn die Gesamtzahl " "der Blocklisten kleiner gleich diesem Schwellwert ist." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "Empfängeradresse für Adblock-Benachrichtigungs-E-Mails." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Leite alle DNS-Anfragen an die \"Lan\"-Zone auf den lokalen DNS-Resolver um, " -"gilt sowohl für UDP und TCP-Protokolle." +"Leitet alle DNS-Anfragen aus den angegebenen Zonen an den lokalen DNS-" +"Resolver um, gilt für das UDP- und TCP-Protokoll." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -513,12 +506,11 @@ msgstr "" "des Systems zu verringern. Hinweis: Diese Änderung benötigt einen Neustart " "des Adblock-Dienstes um in Kraft zu treten." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Aktualisieren" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Aktualisiere DNS-Report" @@ -526,83 +518,85 @@ msgstr "Aktualisiere DNS-Report" msgid "Refresh Timer" msgstr "Aktualisiere Timer" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "Aktualisiere Timer..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Aktualisiere..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" +msgstr "SafeSearch abschwächen" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Berichte Datenblock-Anzahl" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Berichte Datenblock-Größe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Verzeichnis für Berichte" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Berichte-Schnittstelle" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Berichte Ports" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "Berichte Datenblock-Nutzung durch tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Berichte von tcpdump verwendete Datenblockgröße in MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -"Setze die engültige DNS-Sperrliste \"adb_list.overall\" nach dem DNS-Backend " -"geladen hat zurück. Hinweis: Diese Option startet einen kleinen ubus/adblock-" -"Monitor im Hintergrund." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Ergebnis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "Run-Verzeichnisse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" -msgstr "Run-Flags" +msgstr "Flags ausführen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "Run-Interfaces" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "Run-Werkzeuge" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Speichern" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." @@ -610,19 +604,19 @@ msgstr "" "Sende relevante Adblock-Benachrichtigungen per Email. Hinweis: Hierzu muss " "das \"msmtp\"-Zusatzpaket installiert sein." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "Absenderadresse für Adblock-Benachrichtigungsmails." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "(Er)Setze einen neuen Adblock-Job" +msgid "Set a new adblock job" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Einstellungen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." @@ -630,74 +624,58 @@ msgstr "" "Größe der Download-Warteschlange für laufende Downloads (inkl. Platzbedarf " "für Sortieren, Zusammenführen)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "Quellen (Größe, Fokus)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" -"Leerzeichengetrennte Liste von DNS-relevanten Firewall-Ports, die zwingend " -"lokal sein müssen." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "Leerzeichengetrennte Liste an Ports die von tcpdump genutzt werden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" "Spezielle Konfigurationseinstellungen für das gewählte Download-Programm." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Startdatum" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "Start-Zeitstempel" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "Trigger-Interface fürs Starten" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "Status / Version" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Anhalten" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -"Zielverzeichnis für DNS-relevante Berichtsdateien. Standardmäßig auf \"/tmp" -"\" gesetzt, hier sollte besser ein USB-Stick oder anderer lokaler Speicher " -"verwendet werden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -"Zielverzeichnis für Sperrlisten-Backups. Standardmäßig auf \"/tmp\" gesetzt, " -"hier sollte besser ein USB-Stick oder anderer lokaler Speicher verwendet " -"werden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Zielverzeichnis für die erzeugte Sperrliste 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "Zielverzeichnis für die erzeugte Jail-Sperrliste \"adb_list.jail\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "Der Aktualisierungstimer konnte nicht aktualisiert werden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "Der Aktualisierungstimer wurde aktualisiert." @@ -739,19 +717,17 @@ msgstr "" "Kommentare mit # am Anfang ebenfalls, nicht jedoch IP-Adressen, Wildcards " "und Regex-Ausdrücke." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -"Hier wird der zuletzt erzeugte DNS-Report angezeigt, um einen aktuelleren " -"anzuzeigen, den Erneuern-Knopf drücken." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Zeit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Timeout für erfolgreichen DNS-Backend-Startvorgang." @@ -763,24 +739,33 @@ msgstr "" "Um die Adblock-Liste aktuell zu halten, sollte dafür ein automatischer " "Update-Job eingerichtet werden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "Top-10 Statistiken" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "Betreff für Adblock-Benachrichtigungsmails." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "Gesamte DNS-Anfragen" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" -msgstr "Verzögerung Trigger-Bedingung" +msgstr "Verzögerung der Trigger-Bedingung" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" msgstr "Konnte Änderungen nicht speichern: %s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Ausführliche Debug-Protokollierung" @@ -793,34 +778,129 @@ msgstr "" "Whitelist-Änderungen wurden gespeichert. Aktualisiere die Adblock-Listen um " "die Änderung anzuwenden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Whiteliste..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "Max. Größe des Result-Sets" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "Änderungen auf diesem Reiter werden erst nach Neustart des adblock " +#~ "Services sichtbar.<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS-Datei zurücksetzen" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Liste von unterstützten und vollständig vorkonfigurierten Adblock-" +#~ "Quellen, bereits aktivierte Quellen sind vorgewählt.<br /> <b><em> Falls " +#~ "zuviele Listen aktiv sind, kann es zu Out-Of-Memory-Fehlern kommen!</em></" +#~ "b><br /> Größenangaben für entsprechende Domain-Reichweiten sind:<br /> " +#~ "• <b>S</b> (-10k), <b>M</b> (10k-30k) und <b>L</b> (30k-80k) " +#~ "sollten für 128MB-Geräte ausreichen,<br /> • <b>XL</b> " +#~ "(80k-200k) sollten für 256-512MB-Geräte ausreichen,<br /> • " +#~ "<b>XXL</b> (200k-) benötigt mehr RAM und zusätzlich eine Multicore-CPU, z." +#~ "B entpsrechende x86- oder RaspberryPi-Geräte.<br /> <p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Setze die engültige DNS-Sperrliste \"adb_list.overall\" nach dem DNS-" +#~ "Backend geladen hat zurück. Hinweis: Diese Option startet einen kleinen " +#~ "ubus/adblock-Monitor im Hintergrund." + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "(Er)Setze einen neuen Adblock-Job" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Zielverzeichnis für DNS-relevante Berichtsdateien. Standardmäßig auf \"/" +#~ "tmp\" gesetzt, hier sollte besser ein USB-Stick oder anderer lokaler " +#~ "Speicher verwendet werden." + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Zielverzeichnis für Sperrlisten-Backups. Standardmäßig auf \"/tmp\" " +#~ "gesetzt, hier sollte besser ein USB-Stick oder anderer lokaler Speicher " +#~ "verwendet werden." + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "Hier wird der zuletzt erzeugte DNS-Report angezeigt, um einen aktuelleren " +#~ "anzuzeigen, den Erneuern-Knopf drücken." + +#~ msgid "Local DNS Ports" +#~ msgstr "Lokale DNS-Ports" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Leite alle DNS-Anfragen an die \"Lan\"-Zone auf den lokalen DNS-Resolver " +#~ "um, gilt sowohl für UDP und TCP-Protokolle." + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "" +#~ "Leerzeichengetrennte Liste von DNS-relevanten Firewall-Ports, die " +#~ "zwingend lokal sein müssen." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "DNS Anforderungen (blockiert)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "DNS-Abfragen (gesamt)" + +#~ msgid "End Date" +#~ msgstr "Enddatum" + +#~ msgid "Start Date" +#~ msgstr "Startdatum" + #~ msgid "SafeSearch Moderate" #~ msgstr "moderates SafeSearch" diff --git a/applications/luci-app-adblock/po/el/adblock.po b/applications/luci-app-adblock/po/el/adblock.po index 08de1c7ff5..25f068404a 100644 --- a/applications/luci-app-adblock/po/el/adblock.po +++ b/applications/luci-app-adblock/po/el/adblock.po @@ -1,22 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-03 08:27+0000\n" -"Last-Translator: Tavaninja <metalcorpe@gmail.com>\n" +"PO-Revision-Date: 2021-01-23 03:57+0000\n" +"Last-Translator: Savvas Sfantos <savvassfa@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/el/>\n" "Language: el\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "" +msgstr "Ενεργές πηγές" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -43,43 +48,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "" +msgstr "Επιπρόσθετες ρυθμίσεις" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" -msgstr "" +msgstr "Σύνθετες ρυθμίσεις DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Προηγμένες ρυθμίσεις ηλεκτρονικού ταχυδρομείου" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" -msgstr "" +msgstr "Σύνθετες ρυθμίσεις αναφοράς" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" -msgstr "" +msgstr "Απάντηση" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "φάκελος διάσωσης" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -92,19 +97,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Αποκλεισμένα αιτήματα DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -112,15 +121,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Λίστα Μπλοκαρισμένων πηγών" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -129,23 +138,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" -msgstr "" +msgstr "Ακύρωση" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "πελάτης" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -153,109 +161,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Μέτρηση" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "κατάλογος DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Επαναφορά αρχείου DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Ημερομηνία" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -269,31 +265,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" -msgstr "" +msgstr "Ενεργοποιήθηκε" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -303,121 +299,125 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "Γενικές ρυθμίσεις" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -430,11 +430,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -442,35 +442,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -478,162 +477,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -667,17 +663,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -687,15 +683,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -704,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -715,34 +720,37 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" +#~ msgid "DNS File Reset" +#~ msgstr "Επαναφορά αρχείου DNS" + #~ msgid "Adblock Version" #~ msgstr "έκδοση αντιδιαφημιστικού" diff --git a/applications/luci-app-adblock/po/en/adblock.po b/applications/luci-app-adblock/po/en/adblock.po index a07bcc4b10..9c0d690d29 100644 --- a/applications/luci-app-adblock/po/en/adblock.po +++ b/applications/luci-app-adblock/po/en/adblock.po @@ -10,11 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -43,43 +48,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -92,19 +97,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -112,15 +121,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -129,23 +138,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -153,109 +161,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -269,31 +265,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Enabled" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -303,40 +299,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -344,80 +356,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -430,11 +430,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -442,35 +442,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -478,162 +477,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -667,17 +663,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -687,15 +683,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -704,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -715,30 +720,30 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/es/adblock.po b/applications/luci-app-adblock/po/es/adblock.po index 66e98f5b29..018cfa0342 100644 --- a/applications/luci-app-adblock/po/es/adblock.po +++ b/applications/luci-app-adblock/po/es/adblock.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-06-16 16:09+0000\n" +"PO-Revision-Date: 2021-02-27 05:11+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/es/>\n" @@ -11,13 +11,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1.1-dev\n" +"X-Generator: Weblate 4.5\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- sin especificar -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Acción" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Fuentes activas" @@ -46,45 +51,45 @@ msgstr "Agregue este (sub) dominio a su lista negra local." msgid "Add this (sub-)domain to your local whitelist." msgstr "Agregue este (sub) dominio a su lista blanca local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "Lista de bloqueo adicional de la cárcel" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Configuración adicional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Demora adicional del disparador en segundos antes de que comience el " "procesamiento de adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Configuración avanzada de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "Configuración avanzada de E-Mail" +msgstr "Configuración avanzada de correo electrónico" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Configuración avanzada de informes" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Responder" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Directorio de respaldo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "Directorio de temperatura base" +msgstr "Directorio temporal base" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -101,19 +106,23 @@ msgstr "" "Se han guardado los cambios en la lista negra. Actualice sus listas de " "bloqueos de anuncios para que los cambios surtan efecto." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Lista negra..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Solicitudes de DNS bloqueadas" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Dominio bloqueado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Dominios bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Copia de seguridad de lista de bloqueo" @@ -121,15 +130,15 @@ msgstr "Copia de seguridad de lista de bloqueo" msgid "Blocklist Query" msgstr "Consulta de lista de bloqueo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Consulta de lista de bloqueo..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Fuentes de lista de bloqueo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -142,24 +151,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "Los cambios en esta pestaña requieren un reninicio completo del servicio " -"adblock para que los cambios surtan efecto.<br /><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "Categorías" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Cliente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -171,13 +178,13 @@ msgstr "" "openwrt/packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" " "rel=\"noreferrer noopener\"> consulte la documentación en línea</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Contar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." @@ -185,50 +192,38 @@ msgstr "" "Cree copias de seguridad de listas de bloqueo comprimidas, se utilizarán en " "caso de errores de descarga o durante el inicio." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "Backend de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Directorio DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Restablecimiento de archivos DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "Informe DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "Solicitudes DNS (bloqueadas)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "Solicitudes DNS (total)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "Tiempo de espera de reinicio de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Fecha" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Desactivar Permitir DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Desactivar Reinicios de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -236,50 +231,50 @@ msgstr "" "Desactivar los reinicios activados por adblock para back-end dns con " "funciones de carga automática/inotify." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Desactivar la lista blanca selectiva de DNS (pasar por RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Dominio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Descargar parámetros" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "Descargar Cola" +msgstr "Cola de descarga" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Utilidad de descarga" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "Notificación del E-Mail" +msgstr "Notificación por correo electrónico" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "Conteo de notificaciones por E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "Perfil de E-Mail" +msgstr "Perfil de correo electrónico" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "Dirección del destinatario del E-Mail" +msgstr "Dirección del destinatario de correo electrónico" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "Dirección del remitente del E-Mail" +msgstr "Dirección del remitente de correo electrónico" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "Tema de E-Mail" +msgstr "Tema del correo electrónico" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 @@ -291,33 +286,33 @@ msgstr "Editar lista negra" msgid "Edit Whitelist" msgstr "Editar lista blanca" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "Activar SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "Activar filtros moderados de SafeSearch para YouTube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Activa el servicio Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -"Activar el registro detallado de depuración en caso de errores de " +"Activar el registro de depuración detallado en caso de errores de " "procesamiento." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Activado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Fecha final" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Finalizar marca de tiempo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -329,11 +324,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Trabajo(s) existente(s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "Dominio de búsqueda de DNS externo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -342,23 +337,39 @@ msgstr "" "exitoso. Tenga en cuenta: para desactivar esta comprobación, configure esta " "opción en 'falso'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Criterios de filtro como fecha, dominio o cliente (opcional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "Puertos del cortafuegos que deben forzarse localmente." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "Zonas de origen del cortafuegos que deben forzarse localmente." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Vaciar caché de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Vacíe la caché de DNS antes del procesamiento de adblock también." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Forzar DNS local" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Puertos forzados" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Zonas forzadas" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -369,7 +380,7 @@ msgstr "" "instalación adicional del paquete 'tcpdump-mini' y un reinicio completo del " "servicio adblock para que surta efecto." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "Configuración general" @@ -377,35 +388,39 @@ msgstr "Configuración general" msgid "Grant access to LuCI app adblock" msgstr "Conceder acceso a la aplicación adblock de LuCI" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Información" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "Directorio de la cárcel" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Último inicio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "Últimas solicitudes de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "Limitar SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "Limitar SafeSearch a proveedores specíficos." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "Número de línea para eliminar" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "Lista de dispositivos de red disponibles utilizados por tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -414,7 +429,7 @@ msgstr "" "Elija 'No especificado' para usar un tiempo de espera de inicio clásico en " "lugar de un disparador de red." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -422,52 +437,27 @@ msgstr "" "Lista de backends DNS compatibles con su directorio de lista predeterminado. " "Para sobrescribir la ruta predeterminada, use la opción 'Directorio DNS'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"Lista de fuentes de adblock compatibles y totalmente preconfiguradas, las " -"fuentes ya activas están preseleccionadas.<br /><b><em>Para evitar errores " -"de OOM, ¡no seleccione demasiadas listas!</em></b><br /> Enumere la " -"información de tamaño con los rangos de dominio respectivos de la siguiente " -"manera:<br /> • <b>S</b> (-10k), <b>M</b> (10k-30k) y <b>L</b> " -"(30k-80k) debería funcionar para dispositivos de 128 MByte,<br /> •" -" <b>XL</b> (80k-200k) debería funcionar para dispositivos de 256-512 " -"MByte,<br /> • <b>XXL</b> (200k-) necesita más RAM y soporte " -"multinúcleo, p. ej. x86 o dispositivos Raspberry.<br /><p></p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Lista de utilidades de descarga totalmente preconfiguradas y compatibles." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Puertos DNS locales" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "Vista de registro" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Servicio con prioridad baja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Nombre / Dirección IP" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "No hay resultados de consulta!" +msgstr "¡No hay resultados de consulta!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" @@ -476,13 +466,13 @@ msgstr "¡Aún no hay registros relacionados con adblock!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" -msgstr "Visión general" +msgstr "Vista general" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Perfil utilizado por 'msmtp' para notificaciones de E-Mails adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Consulta" @@ -492,7 +482,7 @@ msgstr "" "Consulta listas de bloqueo activas y copias de seguridad para un dominio " "específico." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -500,19 +490,19 @@ msgstr "" "Aumente el recuento de notificaciones para obtener correos electrónicos si " "el recuento general de la lista de bloqueo es menor o igual al límite dado." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "Dirección del receptor para la notificación de bloqueos electrónicos." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Redireccionar todas las consultas DNS desde la zona 'lan' al solucionador " -"DNS local, se aplica al protocolo UDP y TCP." +"Redirigir todas las consultas de DNS de las zonas especificadas al sistema " +"de resolución de DNS local, se aplica a los protocolos UDP y TCP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -522,96 +512,97 @@ msgstr "" "tomar menos recursos del sistema. Tenga en cuenta: este cambio requiere un " "reinicio completo del servicio adblock para que surta efecto." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Refrescar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Actualizar informe DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "Actualizar temporizador" +msgstr "Temporizador de actualización" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "Actualizar temporizador..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Actualizar..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "Relajar SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "Recargar" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "Eliminar un trabajo existente" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Informe de recuento de fragmentos" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Tamaño del fragmento de informe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Directorio de informes" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Interfaz de informe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Informar puertos" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "Informe el recuento de fragmentos utilizado por tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Informe el tamaño del fragmento utilizado por tcpdump en MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" -"Restablece la lista de bloqueo de DNS final 'adb_list.overall' después de la " -"carga del backend de DNS. Nota: esta opción inicia un pequeño monitor ubus/" -"adblock en segundo plano." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "Reiniciar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Resultado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "Ejecutar directorios" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "Ejecutar banderas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "Ejecutar interfaces" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "Ejecutar utilidades" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Guardar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." @@ -619,21 +610,21 @@ msgstr "" "Enviar correos electrónicos de notificación relacionados con adblock. Tenga " "en cuenta: esto necesita una instalación adicional del paquete 'msmtp'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" "Dirección del remitente para los correos electrónicos de notificación de " "adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "Establecer/Reemplazar un nuevo trabajo de adblock" +msgid "Set a new adblock job" +msgstr "Establecer un nuevo trabajo de adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Configuraciones" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." @@ -641,89 +632,73 @@ msgstr "" "Tamaño de la cola de descarga para el procesamiento de descarga (incluida la " "clasificación, fusión, etc.) en paralelo." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "Fuentes (tamaño, enfoque)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" -"Lista separada por espacios de puertos de firewall relacionados con DNS que " -"deben forzarse localmente." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "Lista de puertos separados por espacios utilizados por tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" "Opciones de configuración especiales para la utilidad de descarga " "seleccionada." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Fecha de inicio" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "Iniciar marca de tiempo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" -msgstr "Interfaz de disparo de inicio" +msgstr "Interfaz de activación de inicio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "Estado / Versión" +msgstr "Estado/Versión" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Suspender" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" -"Directorio de destino para archivos de informes relacionados con DNS. El " -"valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB u " -"otro disco local." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." +msgstr "Directorio de destino para archivos de informes relacionados con DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" -"Directorio de destino para copias de seguridad de listas de bloqueo. El " -"valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB u " -"otro disco local." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "Directorio de destino para copias de seguridad de listas de bloqueo." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" "Directorio de destino para la lista de bloqueo generada 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" "Directorio de destino para la lista de bloqueo de cárcel generada 'adb_list." "jail'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "No se pudo actualizar el temporizador de actualización." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." -msgstr "El temporizador de actualización se ha actualizado." +msgstr "Se ha actualizado el temporizador de actualización." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" msgstr "" -"El día de la semana (opcional, valores: 1-7 posiblemente sep. Por, o -)" +"El día de la semana (opt., valores: 1-7 posiblemente separados por , o -)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 msgid "The hours portition (req., range: 0-23)" -msgstr "La porción de horas (req., Rango: 0-23)" +msgstr "El reparto de horas (req., rango: 0-23)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 msgid "The minutes portion (opt., range: 0-59)" @@ -756,19 +731,19 @@ msgstr "" "línea. Los comentarios introducidos con '#' están permitidos; las " "direcciones IP, comodines y expresiones regulares no." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -"Esto muestra el último Informe DNS generado, presione el botón Actualizar " -"para obtener uno actual." +"Esta pestaña muestra el último informe DNS generado, presione el botón " +"'Actualizar' para obtener uno actual." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Hora" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Tiempo de espera para esperar un reinicio de backend de DNS exitoso." @@ -780,24 +755,33 @@ msgstr "" "Para mantener sus listas de bloqueos de anuncios actualizadas, debe " "configurar un trabajo de actualización automática para estas listas." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "Top 10 estadísticas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "Tema para los correos electrónicos de notificación de adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "Solicitudes DNS Totales" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Retraso de disparo" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "No se pueden guardar los cambios: %s" +msgstr "No se pudo guardar los cambios: %s" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "Variantes" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Registro de depuración detallado" @@ -810,34 +794,130 @@ msgstr "" "Se han guardado los cambios en la lista blanca. Actualice sus listas de " "bloqueos de anuncios para que los cambios surtan efecto." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Lista blanca..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "máx. tamaño del conjunto de resultados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "llamado (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "crudo (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "Los cambios en esta pestaña requieren un reninicio completo del servicio " +#~ "adblock para que los cambios surtan efecto.<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "Restablecimiento de archivos DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Lista de fuentes de adblock compatibles y totalmente preconfiguradas, las " +#~ "fuentes ya activas están preseleccionadas.<br /><b><em>Para evitar " +#~ "errores de OOM, ¡no seleccione demasiadas listas!</em></b><br /> Enumere " +#~ "la información de tamaño con los rangos de dominio respectivos de la " +#~ "siguiente manera:<br /> • <b>S</b> (-10k), <b>M</b> (10k-30k) " +#~ "y <b>L</b> (30k-80k) debería funcionar para dispositivos de 128 MByte," +#~ "<br /> • <b>XL</b> (80k-200k) debería funcionar para " +#~ "dispositivos de 256-512 MByte,<br /> • <b>XXL</b> (200k-) " +#~ "necesita más RAM y soporte multinúcleo, p. ej. x86 o dispositivos " +#~ "Raspberry.<br /><p></p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Restablece la lista de bloqueo de DNS final 'adb_list.overall' después de " +#~ "la carga del backend de DNS. Nota: esta opción inicia un pequeño monitor " +#~ "ubus/adblock en segundo plano." + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "Establecer/Reemplazar un nuevo trabajo de adblock" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Directorio de destino para archivos de informes relacionados con DNS. El " +#~ "valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB " +#~ "u otro disco local." + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Directorio de destino para copias de seguridad de listas de bloqueo. El " +#~ "valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB " +#~ "u otro disco local." + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "Esto muestra el último Informe DNS generado, presione el botón Actualizar " +#~ "para obtener uno actual." + +#~ msgid "Local DNS Ports" +#~ msgstr "Puertos DNS locales" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Redireccionar todas las consultas DNS desde la zona 'lan' al solucionador " +#~ "DNS local, se aplica al protocolo UDP y TCP." + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "" +#~ "Lista separada por espacios de puertos de firewall relacionados con DNS " +#~ "que deben forzarse localmente." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "Solicitudes DNS (bloqueadas)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "Solicitudes DNS (total)" + +#~ msgid "End Date" +#~ msgstr "Fecha final" + +#~ msgid "Start Date" +#~ msgstr "Fecha de inicio" + #~ msgid "SafeSearch Moderate" #~ msgstr "SafeSearch Moderado" diff --git a/applications/luci-app-adblock/po/fi/adblock.po b/applications/luci-app-adblock/po/fi/adblock.po index 8299526f1c..585df55361 100644 --- a/applications/luci-app-adblock/po/fi/adblock.po +++ b/applications/luci-app-adblock/po/fi/adblock.po @@ -10,11 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Toiminta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Aktiiviset lähteet" @@ -43,44 +48,44 @@ msgstr "Lisää tämä (ali-)verkkonimi kieltolistallesi." msgid "Add this (sub-)domain to your local whitelist." msgstr "Lisää tämä (ali-)verkkonimi sallittujen listallesi." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Lisäasetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Ylimääräinen odotusaika sekunteina ennen adblock-käsittelyn aloittamista." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "DNS-lisäasetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "Sähköpostin lisäasetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Raportoinnin lisäasetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Vastaus" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Varmuuskopiohakemisto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Oletushakemisto väliaikaistiedostoille" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -97,19 +102,23 @@ msgstr "" "Kieltolistan muutokset on tallennettu. Virkistä adblock-listat ottaaksesi " "muutokset käyttöön." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Kieltolista..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Estetty verkkonimi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Estetyt verkkonimet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Kieltolistan varmuuskopio" @@ -117,15 +126,15 @@ msgstr "Kieltolistan varmuuskopio" msgid "Blocklist Query" msgstr "Estolistan kysely" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Estolistojen lähteet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -134,23 +143,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Peruuta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Asiakas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -158,62 +166,50 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Määrä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "DNS-sovellus" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS-tiedoston resetointi" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "DNS-kyselyt (estetyt)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "DNS:n uudelleenkäynnistyksen aikaraja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Päivä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Estä DNS:n salliminen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Estä DNS:n uudelleenkäynnistykset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -221,48 +217,48 @@ msgstr "" "Estä adblockin aiheuttamat DNS-sovelluksen uudelleenkäynnistykset autoload/" "inotify-funktioilla." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Verkkonimi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Latausparametrit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "Latausjono" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Lataustyökalu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Sähköposti-ilmoitus" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "Sähköposti-ilmoitusten määrä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "Sähköpostiprofiili" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "Sähköposti: vastaanottajan osoite" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "Sähköposti: lähettäjän osoite" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "Sähköposti: otsikko" @@ -276,31 +272,31 @@ msgstr "Editoi estolistaa" msgid "Edit Whitelist" msgstr "Editoi sallittujen lista" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Ota Adblock-palvelu käyttöön." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "Runsas lokisisältö toimintojen virheiden etsimistä varten." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Käytössä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Päättymisaika" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -310,40 +306,56 @@ msgstr "" msgid "Existing job(s)" msgstr "Nykyiset työt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Suodatintekijät kuten päivä, verkkonimi tai asiakas (valinnainen)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Tyhjennä DNS-välimuisti" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Tyhjennä DNS-välimuisti ennen Adblock-sääntöjen käsittelyä." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Pakota paikallinen DNS" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "Yleisasetukset" @@ -351,80 +363,68 @@ msgstr "Yleisasetukset" msgid "Grant access to LuCI app adblock" msgstr "Salli pääsy Adblock-asetuksiin" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Tietoja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Viimeksi ajettu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "Viimeiset DNS-kyselyt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "Tuetut ja valmiiksi asetetut lataustyökalut." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Paikalliset DNS-portit" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "Lokinäkymä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Matala sovelluksen prioriteetti" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Nimi / IP-osoite" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Ei kyselyn tuloksia!" @@ -437,11 +437,11 @@ msgstr "Ei vielä Adblock-lokeja!" msgid "Overview" msgstr "Yleiskatsaus" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Kysely" @@ -449,37 +449,34 @@ msgstr "Kysely" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "Vastaanottajan sähköpostiosoite Adblockin ilmoituksille." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Ohjaa kaikki LAN-vyöhykkeeltä tulevat DNS-kyselyt paikalliselle DNS-" -"palvelimelle, sekä UDP- että TCP-protokollat." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Päivitä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Päivitä DNS-raportti" @@ -487,162 +484,159 @@ msgstr "Päivitä DNS-raportti" msgid "Refresh Timer" msgstr "Päivitysajastin" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "Päivitysajastin..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Päivitä..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Raporttipalojen määrä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Raporttipalojen koko" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Raporttihakemisto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Raportoitava sovitin" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Raportoitavat portit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Tulos" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "Ajohakemistot" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "Ajo-parametrit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "Ajettavat sovittimet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Tallenna" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "Lähettäjän osoite Adblockin sähköposti-ilmoituksille." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Asetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "Lähteet (koko, fokus)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -676,17 +670,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -696,15 +690,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -713,7 +711,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -724,30 +727,49 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS-tiedoston resetointi" + +#~ msgid "Local DNS Ports" +#~ msgstr "Paikalliset DNS-portit" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Ohjaa kaikki LAN-vyöhykkeeltä tulevat DNS-kyselyt paikalliselle DNS-" +#~ "palvelimelle, sekä UDP- että TCP-protokollat." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "DNS-kyselyt (estetyt)" + +#~ msgid "End Date" +#~ msgstr "Päättymisaika" diff --git a/applications/luci-app-adblock/po/fr/adblock.po b/applications/luci-app-adblock/po/fr/adblock.po index 0c8c3ffa24..b56a23c4b2 100644 --- a/applications/luci-app-adblock/po/fr/adblock.po +++ b/applications/luci-app-adblock/po/fr/adblock.po @@ -1,20 +1,25 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-08 12:44+0000\n" -"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" +"PO-Revision-Date: 2020-11-15 19:47+0000\n" +"Last-Translator: Loïck MAHIEUX <loick111@gmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/fr/>\n" "Language: fr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Action" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Sources actives" @@ -43,45 +48,45 @@ msgstr "Ajout sous-domaine au réseau local blacklisté." msgid "Add this (sub-)domain to your local whitelist." msgstr "Ajout sous-domaine au réseau local whitelisté." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "Additionnel Bannis Blocklisté" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Paramètres additionnels" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Délai de déclenchement supplémentaire en secondes avant que le bloqueur de " "publicité démarre." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Paramètres DNS avancés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "Paramètres de messagerie électronique avancés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Paramètres de rapport avancés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Répondre" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Répertoire de sauvegarde" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Répertoire Temporaire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -98,19 +103,23 @@ msgstr "" "Changement Blacklist a été Sauvegarder. Rafraichir votre liste Adblock pour " "que les chgmt prennent effet." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Liste noire ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Domaines bloqués" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Domaines bloqués" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Sauvegarde de la liste de blocage" @@ -118,15 +127,15 @@ msgstr "Sauvegarde de la liste de blocage" msgid "Blocklist Query" msgstr "Demande Blocklist" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Demande Blocklist..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Sources des listes de blocage" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -139,25 +148,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Annuler" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -"Les modifications de cet onglet nécessitent un redémarrage complet du " -"service adblock pour prendre effet <br /> <p>   </p>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -170,13 +176,13 @@ msgstr "" "\"_blank\" rel=\"noreferrer noopener\" >consulter la documentation en ligne</" "a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Compteur" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." @@ -184,50 +190,38 @@ msgstr "" "Créer des sauvegardes de listes de blocage compressées, elles seront " "utilisées en cas d'erreurs de téléchargement ou lors du démarrage." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "Backend du DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Répertoire du DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Réinitialiser le fichier de DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "Rapport DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "Requêtes DNS (bloquées)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "Requêtes DNS (totales)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "Délai de redémarrage DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Date" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Désactiver l'autorisation DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Désactiver les redémarrages DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -235,48 +229,48 @@ msgstr "" "Désactiver les redémarrages déclenchés par adblock pour les backends dns " "avec des fonctions d'auto-chargement/notification." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Désactiver la liste blanche sélective du DNS (passthrough RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domaine" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Paramètres Téléchargement" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "Queue de Téléchargement" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Télécharger l'utilitaire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Notifications par e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "Nombre de notifications par courrier électronique" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "Profile Email" +msgstr "Email du profil" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "Adresse e-mail du destinataire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "Adresse électronique de l'expéditeur" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "Objet du courrier électronique" @@ -290,32 +284,32 @@ msgstr "Modifier la liste noire" msgid "Edit Whitelist" msgstr "Modifier la liste blanche" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "Activer Safesearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "Activez les filtres SafeSearch modérés pour youtube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Activer le service adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Activez la journalisation verbale de débogage en cas d'erreurs de traitement." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Activé" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Date de fin" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -327,11 +321,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Travaux en cours" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "Domaine de recherche DNS externe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -340,23 +334,39 @@ msgstr "" "Remarque : Pour désactiver cette vérification, réglez cette option sur \"Faux" "\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Critère filtre comme la date, domaine, client (option)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Vider le cache DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Videz également le cache DNS avant le traitement des adblocs." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Forcer le DNS local" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -367,7 +377,7 @@ msgstr "" "d'un paquet \"tcpdump-mini\" supplémentaire et le redémarrage complet du " "service adblock pour prendre effet." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "Paramètres généraux" @@ -375,35 +385,39 @@ msgstr "Paramètres généraux" msgid "Grant access to LuCI app adblock" msgstr "Donner tout accès à l'application LuCI adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Information" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "Répertoire des bannis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Dernière exécution" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "Dernière Requêtes DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "Limiter SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "Limitez SafeSearch à certains fournisseurs." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "Liste des périphériques réseau disponibles utilisés par tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -412,7 +426,7 @@ msgstr "" "l'adblock. Choisissez \"non spécifié\" pour utiliser un délai de démarrage " "classique au lieu d'un déclencheur réseau." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -421,52 +435,26 @@ msgstr "" "Pour écraser le chemin d'accès par défaut, utilisez l'option \"Répertoire DNS" "\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"Liste des sources adblock supportées et entièrement pré-configurées, les " -"sources déjà actives sont présélectionnées.<br /> <b><em>Pour éviter les " -"erreurs d'OOM, veuillez ne pas sélectionner trop de listes !</em></b><br /> " -"Indiquez les informations sur la taille avec les plages de domaines " -"respectives comme suit :<br /> • <b>S</b> (-10k), <b>M</b> " -"(10k-30k) et <b>L</b> (30k-80k) devrait fonctionner pour des appareils de " -"128 MByte,<br /> • <b>XL</b> (80k-200k) devrait fonctionner pour " -"les appareils de 256 à 512 Mo,<br /> • <b>XXL</b> (200k-) a " -"besoin de plus de RAM et de support Multicore, par exemple des appareils x86 " -"ou Raspberry.<br /> <p> </p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Liste des utilitaires de téléchargement pris en charge et entièrement pré-" "configurés." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Ports DNS locaux" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "Vue du journal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Service en priorité basse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Nom / Adresse IP" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Pas de résultats de recherche !" @@ -479,11 +467,11 @@ msgstr "Pas encore de journaux liés à l'adblock !" msgid "Overview" msgstr "Vue d’ensemble" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Profil utilisé par \"msmtp\" pour les e-mails de notification adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Requête" @@ -493,7 +481,7 @@ msgstr "" "Recherchez des listes de blocage actives et des sauvegardes pour un domaine " "spécifique." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -502,21 +490,19 @@ msgstr "" "électroniques si le nombre total de blocages est inférieur ou égal à la " "limite donnée." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" "Adresse du destinataire pour les e-mails de notification du bloqueur de " "publicité." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Rediriger toutes les requêtes DNS de la zone \"lan\" vers le résolveur DNS " -"local, s'applique aux protocoles UDP et TCP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -527,12 +513,11 @@ msgstr "" "changement nécessite un redémarrage complet du service adblock pour prendre " "effet." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Actualiser" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Rafraîchir le rapport DNS" @@ -540,83 +525,85 @@ msgstr "Rafraîchir le rapport DNS" msgid "Refresh Timer" msgstr "Rafraichir Horloge" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "Rafraîchir l'horloge..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Rafraichi..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "Relax SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Rapporter le nombre de morceaux" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Rapporter la taille des morceaux" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Rapporter le Répertoire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Rapporter l'Interface" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Rapport des Ports" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "Signalez le nombre de morceaux utilisés par tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Indiquez la taille des morceaux utilisés par tcpdump en MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -"Réinitialise la liste de blocage DNS finale \"adb_list.overall\" après le " -"chargement du backend DNS. Veuillez noter : Cette option démarre un petit " -"moniteur ubus/adblock en arrière-plan." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Resultat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "Répertoire de travail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "Drapeaux de travail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "Interfaces de travail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "Outils de travail" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Enregistrer" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." @@ -624,21 +611,21 @@ msgstr "" "Envoyer des e-mails de notification relatifs à l'adblock. Veuillez noter que " "l'installation du paquet \"msmtp\" supplémentaire est nécessaire." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" "Adresse de l'expéditeur des courriers électroniques de notification de " "l'adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "Définir/remplacer un nouveau travail d'adblock" +msgid "Set a new adblock job" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Paramètres" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." @@ -646,75 +633,60 @@ msgstr "" "Taille de la file d'attente pour le traitement des téléchargements (y " "compris le tri, la fusion, etc.) en parallèle." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "Sources (Taille, Focus)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" -"Liste séparée par espace des ports de pare-feu liés au DNS qui doivent être " -"forcés localement." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "Liste des ports utilisés par tcpdump, séparés par des espaces." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" "Options de configuration spéciales pour l'utilitaire de téléchargement " "sélectionné." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Date de début" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "Interface de déclenchmnt de démarrage" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "Statut / Version" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Mettre en pause" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -"Répertoire cible pour les fichiers de rapports liés au DNS. La valeur par " -"défaut est '/tmp', veuillez utiliser plutot une clé usb ou un disque local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -"Répertoire cible pour les sauvegardes des listes de blocage. La valeur par " -"défaut est '/tmp', veuillez utiliser de préférence une clé usb ou un autre " -"disque local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" "Répertoire cible pour la liste de blocage générée \"adb_list.overall\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "Répertoire cible pour la liste de blocage générée \"adb_list.jail\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "L'horloge de rafraîchissement n'a pas pu être mise à jour." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "Horloge mis à jour." @@ -760,19 +732,17 @@ msgstr "" "autorisés - les adresses IP, les caractères génériques et les expressions " "rationnelles ne le sont pas." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -"Ceci montre le dernier rapport DNS généré, appuyez sur le bouton de " -"rafraîchissement pour en obtenir un actuel." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Heure" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Délai d'attente pour un redémarrage réussi du backend du DNS." @@ -784,15 +754,19 @@ msgstr "" "Pour maintenir vos listes adblock à jour, vous devez configurer un travail " "de mise à jour automatique de ces listes." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "Top 10 Statistiques" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "Objet pour les notifications par e-mails d'adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Délai de déclenchement" @@ -801,7 +775,12 @@ msgstr "Délai de déclenchement" msgid "Unable to save changes: %s" msgstr "Sauvegarde Impossible : %s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Logs en mode verbeux" @@ -814,34 +793,130 @@ msgstr "" "Les modifications apportées à la liste blanche sauvegardées. Rafraîchissez " "adblock pour prise d'effet." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Liste Blanche..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "taille max. des résultats" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "Les modifications de cet onglet nécessitent un redémarrage complet du " +#~ "service adblock pour prendre effet <br /> <p>   </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "Réinitialiser le fichier de DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Liste des sources adblock supportées et entièrement pré-configurées, les " +#~ "sources déjà actives sont présélectionnées.<br /> <b><em>Pour éviter les " +#~ "erreurs d'OOM, veuillez ne pas sélectionner trop de listes !</em></b><br /" +#~ "> Indiquez les informations sur la taille avec les plages de domaines " +#~ "respectives comme suit :<br /> • <b>S</b> (-10k), <b>M</b> " +#~ "(10k-30k) et <b>L</b> (30k-80k) devrait fonctionner pour des appareils de " +#~ "128 MByte,<br /> • <b>XL</b> (80k-200k) devrait fonctionner " +#~ "pour les appareils de 256 à 512 Mo,<br /> • <b>XXL</b> (200k-) " +#~ "a besoin de plus de RAM et de support Multicore, par exemple des " +#~ "appareils x86 ou Raspberry.<br /> <p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Réinitialise la liste de blocage DNS finale \"adb_list.overall\" après le " +#~ "chargement du backend DNS. Veuillez noter : Cette option démarre un petit " +#~ "moniteur ubus/adblock en arrière-plan." + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "Définir/remplacer un nouveau travail d'adblock" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Répertoire cible pour les fichiers de rapports liés au DNS. La valeur par " +#~ "défaut est '/tmp', veuillez utiliser plutot une clé usb ou un disque " +#~ "local." + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Répertoire cible pour les sauvegardes des listes de blocage. La valeur " +#~ "par défaut est '/tmp', veuillez utiliser de préférence une clé usb ou un " +#~ "autre disque local." + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "Ceci montre le dernier rapport DNS généré, appuyez sur le bouton de " +#~ "rafraîchissement pour en obtenir un actuel." + +#~ msgid "Local DNS Ports" +#~ msgstr "Ports DNS locaux" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Rediriger toutes les requêtes DNS de la zone \"lan\" vers le résolveur " +#~ "DNS local, s'applique aux protocoles UDP et TCP." + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "" +#~ "Liste séparée par espace des ports de pare-feu liés au DNS qui doivent " +#~ "être forcés localement." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "Requêtes DNS (bloquées)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "Requêtes DNS (totales)" + +#~ msgid "End Date" +#~ msgstr "Date de fin" + +#~ msgid "Start Date" +#~ msgstr "Date de début" + #~ msgid "SafeSearch Moderate" #~ msgstr "SafeSearch Modéré" diff --git a/applications/luci-app-adblock/po/he/adblock.po b/applications/luci-app-adblock/po/he/adblock.po index f09fc271c3..63aaa30a82 100644 --- a/applications/luci-app-adblock/po/he/adblock.po +++ b/applications/luci-app-adblock/po/he/adblock.po @@ -1,14 +1,26 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-01-15 22:31+0000\n" +"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock/he/>\n" "Language: he\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " +"n % 10 == 0) ? 2 : 3));\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -37,43 +49,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -86,19 +98,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -106,15 +122,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -123,23 +139,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" -msgstr "" +msgstr "ביטול" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,109 +162,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -263,31 +266,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -297,40 +300,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -338,80 +357,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -424,11 +431,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -436,35 +443,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -472,162 +478,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" -msgstr "" +msgstr "הגדרות" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -661,17 +664,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -681,15 +684,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -698,7 +705,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -709,30 +721,30 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/hi/adblock.po b/applications/luci-app-adblock/po/hi/adblock.po index f0133b7d8f..3e0e872af2 100644 --- a/applications/luci-app-adblock/po/hi/adblock.po +++ b/applications/luci-app-adblock/po/hi/adblock.po @@ -4,11 +4,16 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -37,43 +42,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -86,19 +91,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -106,15 +115,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -123,23 +132,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,109 +155,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -263,31 +259,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -297,40 +293,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -338,80 +350,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -424,11 +424,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -436,35 +436,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -472,162 +471,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -661,17 +657,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -681,15 +677,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -698,7 +698,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -709,30 +714,30 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/hu/adblock.po b/applications/luci-app-adblock/po/hu/adblock.po index 752b41b1a8..f0bada177c 100644 --- a/applications/luci-app-adblock/po/hu/adblock.po +++ b/applications/luci-app-adblock/po/hu/adblock.po @@ -1,20 +1,25 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-03-31 13:27+0000\n" -"Last-Translator: Tamas Szanto <taszanto@gmail.com>\n" +"PO-Revision-Date: 2021-01-29 18:06+0000\n" +"Last-Translator: Axhyre <axhyre@gmail.com>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/hu/>\n" "Language: hu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Művelet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -43,45 +48,45 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "További aktiválókésleltetés másodpercben, mielőtt a reklámblokkolás " "feldolgozása elkezdődik." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Válasz" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Biztonsági mentés könyvtára" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -94,19 +99,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Blokkolt tartomány" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -114,15 +123,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Blokkolási lista forrásai" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -131,23 +140,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Mégse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Ügyfél" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -155,109 +163,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Darabszám" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS könyvtár" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS fájlvisszaállítás" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Dátum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Tartomány" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Letöltési segédprogram" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "E-mail értesítés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "E-mail fogadócím" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -271,31 +267,31 @@ msgstr "Feketelista szerkesztése" msgid "Edit Whitelist" msgstr "Fehérlista szerkesztése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Engedélyezve" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Befejezési dátum" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -305,122 +301,126 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "DNS gyorsítótár kiürítése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Helyi DNS kényszerítése" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "Általános beállítások" +msgstr "Általános Beállítások" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Utolsó futás" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "A támogatott és teljesen előre beállított letöltési segédprogramok listája." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Alacsony prioritású szolgáltatás" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -433,11 +433,11 @@ msgstr "" msgid "Overview" msgstr "Áttekintés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Lekérdezés" @@ -445,35 +445,34 @@ msgstr "Lekérdezés" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "Fogadó címe a reklámblokkoló értesítési e-mailekhez." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Frissítés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -481,162 +480,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Darabok számának jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Darabok méretének jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Könyvtár jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Csatoló jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Mentés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Kezdődátum" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Felfüggesztés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Célkönyvtár az előállított „adb_list.overall” blokkolási listához." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -672,17 +668,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Idő" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -692,15 +688,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Aktiváló késleltetése" @@ -709,7 +709,12 @@ msgstr "Aktiváló késleltetése" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Részletes hibakeresési naplózás" @@ -720,34 +725,43 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" +#~ msgid "DNS File Reset" +#~ msgstr "DNS fájlvisszaállítás" + +#~ msgid "End Date" +#~ msgstr "Befejezési dátum" + +#~ msgid "Start Date" +#~ msgstr "Kezdődátum" + #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" diff --git a/applications/luci-app-adblock/po/it/adblock.po b/applications/luci-app-adblock/po/it/adblock.po index 07ec2d191e..eb09998c31 100644 --- a/applications/luci-app-adblock/po/it/adblock.po +++ b/applications/luci-app-adblock/po/it/adblock.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-03-07 12:33+0000\n" -"Last-Translator: Giuseppe Valitutto <valituttogiuseppe@gmail.com>\n" +"PO-Revision-Date: 2021-03-15 10:03+0000\n" +"Last-Translator: Giovanni Giacobbi <giovanni@giacobbi.net>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/it/>\n" "Language: it\n" @@ -11,15 +11,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" -msgstr "Azione" +msgstr "Action" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "" +msgstr "Sorgenti attive" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -32,57 +37,57 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "" +msgstr "Aggiungi dominio alla lista nera" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" -msgstr "" +msgstr "Aggiungi dominio alla whitelist" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." -msgstr "" +msgstr "Aggiungi questo (sotto)dominio alla tua lista nera locale." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47 msgid "Add this (sub-)domain to your local whitelist." -msgstr "" +msgstr "Aggiungi questo (sotto)dominio alla tua lista bianca locale." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "" +msgstr "Impostazioni aggiuntive" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Tempo addizionale in secondi di attesa prima che adblock si avvii." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" -msgstr "" +msgstr "Impostazioni DNS avanzate" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Impostazioni E-Mail avanzate" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" -msgstr "" +msgstr "Impostazioni avanzate dei report" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Risposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Directory del Backup" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -95,19 +100,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" -msgstr "Dominio bloccato" +msgstr "Domini bloccati" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -115,15 +124,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Fonti lista di Blocco" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -132,133 +141,126 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" -msgstr "" +msgstr "Annulla" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Configurazione del pacchetto adblock per bloccare pubblicità/domini " +"fraudolenti usando il DNS. Per informazioni aggiuntive <a href=\"https://" +"github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" +"\"_blank\" rel=\"noreferrer noopener\" >consulta la documentazione</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Numero" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" +"Crea dei backup delle liste di blocco comrpessi, saranno usati " +"nell'evenienza di errori nello scaricamento o all'avvio." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" -msgstr "" +msgstr "Backend DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Directory DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Reset File DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" +msgstr "Report del DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "" +msgstr "Tempo di riavvio del DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Dominio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Utilità di Scaricamento" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Notifica E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "E-Mail destinatario" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -272,31 +274,31 @@ msgstr "Modifica Lista Nera" msgid "Edit Whitelist" msgstr "Modifica Lista Bianca" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" -msgstr "Abilitato" +msgstr "Inglese (sviluppatore)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Data Fine" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -306,122 +308,126 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Pulisci Cache DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Forza DNS Locale" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "Impostazioni Generali" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Ultimo Avvio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Elenco delle utility di download supportate e completamente preconfigurate." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Serviio a bassa priorità" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -434,11 +440,11 @@ msgstr "" msgid "Overview" msgstr "Riassunto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Interrogazione" @@ -446,36 +452,35 @@ msgstr "Interrogazione" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" "Indirizzo del destinatario per e-mail di notifica di blocco degli annunci." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Ricaricare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -483,162 +488,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Directory dei report" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Salva" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" -msgstr "" +msgstr "Impostazioni" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Sospendi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Directory per la lista di blocco generata 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -673,17 +675,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -693,15 +695,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Ritardo Innesco" @@ -710,7 +716,12 @@ msgstr "Ritardo Innesco" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Registro di Debug Dettagliato" @@ -721,35 +732,48 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" #~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "I cambiamenti effetuati in questa pagina richiedono un riavvio completo " +#~ "del servizio adblock per essere applicati.<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "Reset File DNS" + +#~ msgid "End Date" +#~ msgstr "Data Fine" + +#~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" #~ msgstr "" diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po index c00d60f4ba..e294dec884 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-07-22 02:42+0000\n" -"Last-Translator: Scott Anecito <scott.anecito@linux.com>\n" +"PO-Revision-Date: 2021-02-07 07:33+0000\n" +"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/ja/>\n" "Language: ja\n" @@ -11,15 +11,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "詳細不明" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "アクション" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "" +msgstr "アクティブなソース" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -46,47 +51,49 @@ msgstr "この(サブ)ドメインをローカルのブラックリストに追 msgid "Add this (sub-)domain to your local whitelist." msgstr "この(サブ)ドメインをローカルのホワイトリストに追加します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "" +msgstr "追加のJailブロックリスト" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "追加設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Adblock の処理が開始されるまでの、追加の遅延時間(秒)です。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "DNS の詳細設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Eメールの詳細設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" -msgstr "" +msgstr "リポートの詳細設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "回答" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "バックアップ先 ディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "" +msgstr "ベースとなるテンポラリディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." msgstr "" +"ベースとなるテンポラリディレクトリはadblock関連の操作に使用されます(ダウン" +"ロード、ソート、統合など)。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 @@ -94,173 +101,176 @@ msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" +"ブラックリストへの変更が保存されました。adblockを更新して変更を適用します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "ブラックリスト..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "ブロックされたDNSリクエスト" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "ブロックされたドメイン" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "" +msgstr "ブロックされたドメイン" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" -msgstr "" +msgstr "ブロックリストのバックアップ" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" -msgstr "" +msgstr "ブロックリストのクエリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." -msgstr "" +msgstr "ブロックリストのクエリ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "ブロックリスト提供元" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " "blocklist e.g. for guest wifi or kidsafe configurations." msgstr "" +"追加のDNSブロックリストを作成してホワイトリスト以外のドメインへのアクセスをブ" +"ロックします。注意: この制限付きブロックリストはゲストwifiまたはkidsafe構成で" +"使用できます。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "キャンセル" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "クライアント" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"adblockパッケージがDNSによって広告/不正ドメインをブロックする設定です。詳しく" +"は、<a href=\"https://github.com/openwrt/packages/blob/master/net/adblock/" +"files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >オンラインド" +"キュメント</a>を確認してください" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "カウント" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" +"圧縮されたブロックリストのバックアップを作成します。ダウンロードエラーや起動" +"時に使用されます。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" -msgstr "" +msgstr "DNSバックエンド" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS ディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS ファイル リセット" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" +msgstr "DNSレポート" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "" +msgstr "DNS再起動タイムアウト" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "日付" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "" +msgstr "DNS許可を無効化" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" -msgstr "" +msgstr "DNS再起動を無効化" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" +"autoload/inotify機能を使用してDNSバックエンドのadblockの再起動トリガーを無効" +"にします。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "" +msgstr "セレクティブDNSホワイトリスティングを無効化(RPZパススルー)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "ドメイン" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "" +msgstr "ダウンロードのパラメータ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "" +msgstr "ダウンロードキュー" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" -msgstr "ダウンロード ユーティリティ" +msgstr "ダウンロードユーティリティ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Eメール通知" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "" +msgstr "Eメール通知数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "" +msgstr "Eメールプロファイル" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "Eメール受信アドレス" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Eメール送信者アドレス" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "" +msgstr "Eメールトピック" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 @@ -272,385 +282,406 @@ msgstr "ブラックリストの編集" msgid "Edit Whitelist" msgstr "ホワイトリストの編集" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "" +msgstr "セーフサーチを有効化" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "" +msgstr "youtube用の適度なセーフサーチフィルタを有効にします。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "" +msgstr "adblockサービスを有効にします。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "エラーが発生した際に詳細なデバッグロギングを有効にします。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "有効" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "終了日" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "終了タイムスタンプ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." msgstr "" +"Google、Bing、DuckDuckGo、Yandex、YouTube、Pixabayのセーフサーチを使用しま" +"す。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "既存のジョブ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" -msgstr "" +msgstr "外部DNSルックアップドメイン" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" +"DNSバックエンドが正常に再起動したかチェックする外部ドメイン。注意: このチェッ" +"クを無効にするにはオプションを無効に設定してください。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" +msgstr "日付、ドメイン、クライアントなどのフィルター基準(オプション)" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "DNS キャッシュのクリア" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." -msgstr "" +msgstr "adblockが正常に動くようにするため、事前にDNSキャッシュをクリアします。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "ローカル DNS の強制" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" +"tcpdumpを介してDNS関連のネットワークトラフィックを収集し、オンデマンドでDNSレ" +"ポートを提供します。 注意: これを有効にするには、追加の「tcpdump-mini」パッ" +"ケージのインストールと完全なadblockサービスの再起動が必要です。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "一般設定" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "" +msgstr "LuCIアプリのadblockへのアクセスを許可" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "情報" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "" +msgstr "Jailディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "最終実行" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "" +msgstr "最新のDNSリクエスト" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "セーフサーチを制限" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." +msgstr "セーフサーチを特定のプロバイダに制限します。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." -msgstr "" +msgstr "tcpdumpが使用する利用可能なネットワークデバイス一覧です。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" +"adblockの開始をトリガーできるネットワークインターフェース一覧です。未指定を選" +"択するとトリガーの代わりに従来のスタートアップタイムアウトを使用します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" +"デフォルトのリストディレクトリを使用するDNSバックエンド一覧です。デフォルトの" +"パスを上書きするには'DNSディレクトリ'オプションを使用してください。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "" +msgstr "ログビュー" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "優先度が低いサービス" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" -msgstr "" +msgstr "名前 / IPアドレス" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "" +msgstr "検索結果がありません!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" -msgstr "" +msgstr "まだadblolck関連のログがありません!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" msgstr "概要" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." -msgstr "" +msgstr "'msmtp'をadblock通知Eメールに使用するプロファイル。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "検索" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82 msgid "Query active blocklists and backups for a specific domain." -msgstr "" +msgstr "特定のドメインのアクティブなブロックリストとバックアップを検索します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" +"通知数を上げて、ブロックリスト全体の数が指定された制限以下の場合に電子メール" +"を取得します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "adblock 通知メールの受信アドレスです。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" +"システムリソースを増やすために、adblockのバックグラウンド処理の優先順位を下げ" +"ます。注意: この変更を有効にするには、完全なadblockサービスの再起動が必要で" +"す。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "リフレッシュ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" -msgstr "" +msgstr "DNSリポートをリフレッシュ" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "リフレッシュタイマー" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." -msgstr "" +msgstr "タイマーをリフレッシュ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." -msgstr "" +msgstr "リフレッシュ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" +msgstr "リラックスセーフサーチ" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "レポート チャンクカウント" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "レポート チャンクサイズ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "レポート ディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "レポート インターフェース" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" -msgstr "" +msgstr "レポートポート" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." -msgstr "" +msgstr "tcpdumpによって使用されるレポートチャンク数。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." -msgstr "" +msgstr "tcpdumpがメガバイト単位で使用するレポートチャンクサイズ。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" -msgstr "" +msgstr "結果" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" -msgstr "" +msgstr "実行ディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" -msgstr "" +msgstr "実行フラグ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" -msgstr "" +msgstr "実行インターフェース" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" -msgstr "" +msgstr "実行ユーティリティー" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "保存" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" +"adblock関連の通知Eメールを送信します。注意: これは追加の'msmtp'パッケージのイ" +"ンストールが必要です。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." -msgstr "" +msgstr "adblockの通知Eメール送信者アドレス。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" +"ダウンロード処理(並べ替え、統合など)のダウンロードキューのサイズを並列で指定" +"します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" +msgstr "ソース(サイズ、フォーカス)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." -msgstr "" +msgstr "tcpdumpが使用するポートの、スペースで区切られたリスト。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "選択したダウンロードユーティリティーの特別な設定オプション。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "開始日" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "開始タイムスタンプ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" -msgstr "" +msgstr "起動時トリガーインターフェース" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "" +msgstr "ステータス / バージョン" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "一時停止" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "生成されたブロックリスト 'adb_list.overall' の保存先ディレクトリです。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" +"生成されたjailブロックリスト'adb_list.jail'のターゲットディレクトリです。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "リフレッシュタイマーを更新できませんでした。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "リフレッシュタイマーが更新されました。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "曜日(オプション、1-7の値。, または - で区切る)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "時(必須、0-23の値)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "分(オプション、0-59の値)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28 msgid "The syslog output, pre-filtered for adblock related messages only." @@ -662,6 +693,9 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"これは、特定の(サブ)ドメインを常に拒否するローカルのadblockブラックリストで" +"す。<br /> 注意: 1行につきドメインを1つだけ追加してください。'#'で始まるコメ" +"ントを追加できます - IPアドレス、ワイルドカード、正規表現は使用できません。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23 msgid "" @@ -669,45 +703,59 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"これは、特定の(サブ)ドメインを常に拒否するローカルのadblockホワイトリストで" +"す。<br /> 注意: 1行につきドメインを1つだけ追加してください。'#'で始まるコメ" +"ントを追加できます - IPアドレス、ワイルドカード、正規表現は使用できません。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "時刻" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." -msgstr "" +msgstr "DNSバックエンドの再起動が成功するまでのタイムアウト。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16 msgid "" "To keep your adblock lists up-to-date, you should setup an automatic update " "job for these lists." msgstr "" +"adblockリストを常に最新にするには、自動更新をこれらのリストに設定する必要があ" +"ります。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" -msgstr "" +msgstr "上位10項目" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." -msgstr "" +msgstr "adblockの通知Eメールのトピック。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "DNSリクエスト合計" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "トリガ遅延" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" +msgstr "変更を保存できませんでした: %s" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "詳細なデバッグ ログ" @@ -717,34 +765,110 @@ msgid "" "Whitelist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" +"ホワイトリストへの変更が保存されました。adblockのリストを更新して変更を適用し" +"ます。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." -msgstr "" +msgstr "ホワイトリスト..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" -msgstr "" +msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" -msgstr "" +msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" -msgstr "" +msgstr "最大の結果セットサイズ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" -msgstr "" +msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" -msgstr "" +msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" -msgstr "" +msgstr "unbound (/var/lib/unbound)" + +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "このタブでの変更を適用するにはadblockサービスを完全に再起動する必要があり" +#~ "ます。<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS ファイル リセット" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "DNSバックエンドの読み込み後に、最後のDNSブロックリスト'adb_list." +#~ "overlall'をリセットします。注意: このオプションはバックグラウンドで小さな" +#~ "ubus/adblockモニターを起動します。" + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "新しいadblockジョブの設定/置き換え" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "DNS関連のレポートファイルのターゲットディレクトリです。デフォルトは'/" +#~ "tmp'です。可能ならばUSBメモリまたは別のローカルディスクを使用してくださ" +#~ "い。" + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "ブロックリストのバックアップに使用されるターゲットディレクトリです。デフォ" +#~ "ルトは'/tmp'です。可能ならばUSBメモリまたは別のローカルディスクを使用して" +#~ "ください。" + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "最後に生成されたDNSレポートを表示しています。更新ボタンを押して現在の状況" +#~ "を表示します。" + +#~ msgid "Local DNS Ports" +#~ msgstr "ローカルDNSポート" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "'lan'ゾーンからすべてのDNSクエリをローカルDNSリゾルバにリダイレクトし、UDP" +#~ "とTCPプロトコルに適用します。" + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "" +#~ "スペースで区切られた、ローカルのみの、DNS関連のファイアウォールポートリス" +#~ "ト。" + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "DNSリクエスト(ブロック)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "DNSリクエスト(合計)" + +#~ msgid "End Date" +#~ msgstr "終了日" + +#~ msgid "Start Date" +#~ msgstr "開始日" #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " diff --git a/applications/luci-app-adblock/po/ko/adblock.po b/applications/luci-app-adblock/po/ko/adblock.po index 8c4f20a5e8..94a92e5903 100644 --- a/applications/luci-app-adblock/po/ko/adblock.po +++ b/applications/luci-app-adblock/po/ko/adblock.po @@ -1,20 +1,25 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-08 06:14+0000\n" -"Last-Translator: Youngbin Han <sukso96100@gmail.com>\n" +"PO-Revision-Date: 2021-03-21 14:31+0000\n" +"Last-Translator: asdf1234 <cydyellowgreen@gmail.com>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- 명시되지 않음 -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "액션" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "활성화된 소스" @@ -43,43 +48,45 @@ msgstr "이 (서브)도메인을 로컬 블랙리스트에 추가." msgid "Add this (sub-)domain to your local whitelist." msgstr "이 (서브)도메인을 로컬 화이트리스트에 추가." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "" +msgstr "추가적인 Jail 블록리스트" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "추가 설정" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "고급 DNS 설정" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "고급 이메일 설정" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "고급 리포트 설정" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#, fuzzy msgid "Answer" -msgstr "" +msgstr "답변" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#, fuzzy msgid "Backup Directory" -msgstr "" +msgstr "백업 경로" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -90,37 +97,43 @@ msgstr "" msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." -msgstr "블랙리스트 변경사항이 저장되었습니다. Adblock 리스트를 새로고침하여 변경사항을 적용하세요." +msgstr "" +"블랙리스트 변경사항이 저장되었습니다. Adblock 리스트를 새로고침하여 변경사항" +"을 적용하세요." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "블랙리스트..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "차단된 DNS 요청" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "차단된 도메인" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "차단된 도메인들" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "차단목록 백업" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" -msgstr "" +msgstr "블록리스트 쿼리" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." -msgstr "" +msgstr "블록리스트 등록..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -129,23 +142,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "취소" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -153,109 +165,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -269,31 +269,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" -msgstr "" +msgstr "활성화" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -303,121 +303,125 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "기본 설정" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -430,11 +434,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -442,35 +446,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -478,162 +481,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -667,17 +667,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -687,15 +687,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -704,7 +708,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -715,30 +724,30 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/mr/adblock.po b/applications/luci-app-adblock/po/mr/adblock.po index 6318991039..81bec20a21 100644 --- a/applications/luci-app-adblock/po/mr/adblock.po +++ b/applications/luci-app-adblock/po/mr/adblock.po @@ -10,11 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -43,43 +48,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -92,19 +97,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -112,15 +121,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -129,23 +138,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -153,109 +161,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -269,31 +265,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "सक्षम केले" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -303,40 +299,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -344,80 +356,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -430,11 +430,11 @@ msgstr "" msgid "Overview" msgstr "आढावा" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -442,35 +442,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -478,162 +477,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -667,17 +663,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -687,15 +683,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -704,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -715,31 +720,31 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/ms/adblock.po b/applications/luci-app-adblock/po/ms/adblock.po index ed331c2429..694e3fea71 100644 --- a/applications/luci-app-adblock/po/ms/adblock.po +++ b/applications/luci-app-adblock/po/ms/adblock.po @@ -10,11 +10,16 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Tindakan" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -43,43 +48,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Terdapat kelewatan picu dalam saat sebelum proses adblock bermula." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Jawapan" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Direktori Sandaran" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -92,19 +97,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Kawasan Liputan Yang telah disekat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -112,15 +121,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Punca Senarai Sekatan" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -129,23 +138,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Pelanggan" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -153,109 +161,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Kiraan" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Direktori DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Reset fail DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Tarikh" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -269,31 +265,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -303,40 +299,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -344,80 +356,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -430,11 +430,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -442,35 +442,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -478,162 +477,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -667,17 +663,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -687,15 +683,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -704,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -715,34 +720,37 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" +#~ msgid "DNS File Reset" +#~ msgstr "Reset fail DNS" + #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" diff --git a/applications/luci-app-adblock/po/nb_NO/adblock.po b/applications/luci-app-adblock/po/nb_NO/adblock.po index 0092c23826..1365cb081b 100644 --- a/applications/luci-app-adblock/po/nb_NO/adblock.po +++ b/applications/luci-app-adblock/po/nb_NO/adblock.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-01-16 12:57+0000\n" +"PO-Revision-Date: 2021-02-27 05:11+0000\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/nb_NO/>\n" @@ -8,15 +8,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.5\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- ubestemt -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Handling" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "" +msgstr "Aktive kilder" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -25,63 +30,63 @@ msgstr "Reklameblokkering" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 msgid "Adblock action" -msgstr "" +msgstr "Reklameblokkeringshandling" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "" +msgstr "Legg til svartelistedomene" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" -msgstr "" +msgstr "Legg til hvitlistedomene" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." -msgstr "" +msgstr "Legg til dette (under-)domenet til i din lokale svarteliste." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47 msgid "Add this (sub-)domain to your local whitelist." -msgstr "" +msgstr "Legg til dette (under-)domenet til i din lokale hvitliste." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "" +msgstr "Ytterligere fengselssvarteliste" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "" +msgstr "Ytterligere innstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Ytterligere utløserforsinkelse i sekunder før behandling av " "reklameblokkering starter." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" -msgstr "" +msgstr "Avanserte DNS-innstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Avanserte e-postinnstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" -msgstr "" +msgstr "Avanserte rapporteringsinnstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Svar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Sikkerhetskopimappe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -89,40 +94,47 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 +#, fuzzy msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" +"Svartelisteendringene har blitt lagret. Gjenoppfrisk dine " +"reklameblokkeringslister slik at endringer trer i effekt." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." -msgstr "" +msgstr "Svartelist …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Blokkerte DNS-forespørsler" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Blokkert domene" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "" +msgstr "Blokkerte domener" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" -msgstr "" +msgstr "Blokkeringslistesikkerhetskopi" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" -msgstr "" +msgstr "Blokkeringslistespørring" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." -msgstr "" +msgstr "Blokkeringslistespørring …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Blokklistekilder" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -131,23 +143,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" -msgstr "" +msgstr "Avbryt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "Kategorier" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -155,111 +166,99 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Antall" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" -msgstr "" +msgstr "DNS-bakende" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS-mappe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS-filtilbakestilling" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" +msgstr "DNS-rapport" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "" +msgstr "DNS-omstartstidsavbrudd" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Dato" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "" +msgstr "Skru av DNS-tillatelse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" -msgstr "" +msgstr "Skru av DNS-omstarter" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domene" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "" +msgstr "Nedlastingsparametre" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "" +msgstr "Nedlastingskø" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Nedlastingsverktøy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "E-postmerknad" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "" +msgstr "E-postmerknadsantall" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "" +msgstr "E-postprofil" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "E-postmottagersadresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "" +msgstr "E-postsenderadresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "" +msgstr "E-postemne" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 @@ -271,31 +270,32 @@ msgstr "Rediger svarteliste" msgid "Edit Whitelist" msgstr "Rediger hvitliste" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "" +msgstr "Skru på SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 +#, fuzzy msgid "Enable moderate SafeSearch filters for youtube." -msgstr "" +msgstr "Skru på moderate SafeSearch-filtre for YouTube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "" +msgstr "Skru på reklameblokkeringstjenesten." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Aktivert" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Sluttdato" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Slutt-tidsstempel" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -303,123 +303,127 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Eksisterende jobb(er)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" -msgstr "" +msgstr "Eksternt DNS-oppslagsdomene" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Tøm DNS-hurtiglageret" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Tving lokal DNS" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Påtvingte porter" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Påtvingte soner" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "Generelle innstillinger" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "" +msgstr "Innvilg tilgang til LuCI-programreklameblokkering" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" -msgstr "" +msgstr "Info" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "" +msgstr "Fengselsmappe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Sist kjørt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "" +msgstr "Siste DNS-forespørsler" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "Begrens SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." -msgstr "" +msgstr "Begrens SafeSearch til gitte tilbydere." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "Linjenummer å fjerne" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." -msgstr "" +msgstr "Liste over tilgjengelige nettverksenheter brukt av tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "" +msgstr "Loggvisning" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" -msgstr "" +msgstr "Lavprioritetstjeneste" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" -msgstr "" +msgstr "Navn / IP-adresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -430,212 +434,213 @@ msgstr "" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" -msgstr "" +msgstr "Oversikt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" -msgstr "" +msgstr "Spørring" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82 msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" -msgstr "" +msgstr "Gjenoppfrisk" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" -msgstr "" +msgstr "Gjenoppfrisk DNS-rapport" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Gjenoppfrisk tidsur" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." -msgstr "" +msgstr "Gjenoppfrisk tidsur …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." -msgstr "" +msgstr "Gjenoppfrisk …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "Last inn igjen" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "Fjern en eksisterende jobb" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" -msgstr "" +msgstr "Rapportmappe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" -msgstr "" +msgstr "Rapportgrensesnitt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" -msgstr "" +msgstr "Rapportporter" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "Omstart" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" -msgstr "" +msgstr "Resultat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 +#, fuzzy msgid "Run Directories" -msgstr "" +msgstr "Kjøringsmapper" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 +#, fuzzy msgid "Run Flags" -msgstr "" +msgstr "Kjøringsflagg" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 +#, fuzzy msgid "Run Interfaces" -msgstr "" +msgstr "Kjøringsgrensesnitt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 +#, fuzzy msgid "Run Utils" -msgstr "" +msgstr "Kjøringsverktøy" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" -msgstr "" +msgstr "Lagre" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" -msgstr "" +msgstr "Innstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" -msgstr "" +msgstr "Kilder (størrelse, fokus)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." -msgstr "" +msgstr "Mellomromsinndelt liste over porter brukt av tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +#, fuzzy +msgid "Start Timestamp" +msgstr "Start-tidsstempel" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "" +msgstr "Status/versjon" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -669,17 +674,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" -msgstr "" +msgstr "Tid" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -689,24 +694,33 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" -msgstr "" +msgstr "Topp 10-statistikk" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "Totalt antall DNS-forespørsler" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" -msgstr "" +msgstr "Utløserforsinkelse" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Kunne ikke lagre endringer: %s" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "Varianter" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -717,33 +731,40 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." -msgstr "" +msgstr "Hvitliste …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" -msgstr "" +msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" -msgstr "" +msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" -msgstr "" +msgstr "maks. resultatsettstørrelse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" -msgstr "" +msgstr "navngitt (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" -msgstr "" +msgstr "rå (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 +#, fuzzy msgid "unbound (/var/lib/unbound)" -msgstr "" +msgstr "ubundet (/var/lib/unbound)" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS-filtilbakestilling" + +#~ msgid "End Date" +#~ msgstr "Sluttdato" #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " diff --git a/applications/luci-app-adblock/po/pl/adblock.po b/applications/luci-app-adblock/po/pl/adblock.po index 69f4e3d412..741dd47245 100644 --- a/applications/luci-app-adblock/po/pl/adblock.po +++ b/applications/luci-app-adblock/po/pl/adblock.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-27 14:41+0000\n" +"PO-Revision-Date: 2021-03-14 05:18+0000\n" "Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/pl/>\n" @@ -9,13 +9,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- nieokreślony -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akcja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Aktywne źródła" @@ -44,45 +49,45 @@ msgstr "Dodaj tę (sub-)domenę do Twojej lokalnej czarnej listy." msgid "Add this (sub-)domain to your local whitelist." msgstr "Dodaj tę (pod-)domenę do Twojej lokalnej białej listy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "Dodatkowa lista zablokowanych" +msgstr "Dodatkowa lista blokująca" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "Ustawienia dodatkowe" +msgstr "Dodatkowe ustawienia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatkowe opóźnienie wyzwalacza w sekundach przed rozpoczęciem przetwarzania " "adblocka." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Ustawienia DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "Ustawienia email" +msgstr "Zaawansowane ustawienia e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Ustawienia raportowania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpowiedź" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Katalog kopii zapasowej" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Podstawowy katalog tymczasowy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -99,35 +104,39 @@ msgstr "" "Zmiany czarnej listy zostały zapisane. Odśwież listę adblocków, aby zmiany " "zostały wprowadzone." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Czarna lista..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Zablokowane żądania DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Zablokowana domena" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Zablokowane domeny" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" -msgstr "Kopia zapasowa listy zablokowanych" +msgstr "Kopia zapasowa list blokujących" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" msgstr "Zapytanie do list blokujących" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Zapytanie..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Źródła list" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -140,25 +149,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Anuluj" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "" -"Zmiany na tej karcie wymagają ponownego uruchomienia usługi Adblock, aby " -"zostały wprowadzone. <br /> <p>   </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "Kategorie" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -170,64 +176,52 @@ msgstr "" "net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\"> " "sprawdź dokumentację online </a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Licznik" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -"Tworzenie skompresowanych kopii zapasowych listy zablokowanych, będą one " -"używane w przypadku błędów pobierania lub podczas uruchamiania." +"Tworzenie skompresowanej kopii zapasowej list, będzie używana w przypadku " +"błędów pobierania lub podczas startu." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "Zaplecze DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Katalog DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Resetuj plik DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "Raport DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "Żądania DNS (zablokowane)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "Żądania DNS (ogółem)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "Limit czasu restartu DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Wyłącz pozwolenie na DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Wyłącz restart DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -235,87 +229,88 @@ msgstr "" "Wyłącz wyzwalane restarty adblocka dla zaplecza DNS z funkcjami Autoload/" "Inotify." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Wyłącz selektywną białą listę DNS (RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domena" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Parametry pobierania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "Kolejka pobierania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Narzędzie pobierania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "Powiadomienie email" +msgstr "Powiadomienie e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "Licznik powiadomień email" +msgstr "Licznik powiadomień e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "Profil email" +msgstr "Profil e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "Adres email odbiorcy" +msgstr "Adres e-mail odbiorcy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "Adres email nadawcy" +msgstr "Adres e-mail nadawcy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "Temat email" +msgstr "Temat e-mail" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 msgid "Edit Blacklist" -msgstr "Edycja czarnej listy" +msgstr "Czarna lista" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:10 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43 msgid "Edit Whitelist" -msgstr "Edycja białej listy" +msgstr "Biała lista" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "Włącz funkcję SafeSearch" +msgstr "Włącz SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "Włącz umiarkowane filtry SafeSearch dla youtube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Włącz usługę adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -"Włącz pełne rejestrowanie debugowania w przypadku błędów przetwarzania." +"Włącz rejestrowanie debugowania w przypadku wystąpienia błędów w " +"przetwarzaniu." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Włączone" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Data końcowa" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Sygnatura czasowa zakończenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -327,11 +322,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Istniejące zadania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "Zewnętrzna domena wyszukiwania DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -340,23 +335,39 @@ msgstr "" "sukcesem. Uwaga: Aby wyłączyć to zaznaczenie, należy ustawić opcję na " "'false'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Kryteria filtrowania takie jak data, domena lub klient (opcjonalnie)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "Porty zapory, które powinny być wymuszane lokalnie." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "Strefy źródłowe zapory, które powinny być wymuszane lokalnie." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Opróżnij pamięć podręczną DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Opróżnij pamięć podręczną DNS przed przetwarzaniem adblocka." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Wymuś lokalny DNS" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Wymuszone porty" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Strefy wymuszone" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -366,7 +377,7 @@ msgstr "" "dostarczaj raport DNS. Uwaga: wymaga to dodatkowej instalacji pakietu " "'tcpdump-mini' i pełnego ponownego uruchomienia usługi adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "Ustawienia główne" @@ -374,35 +385,39 @@ msgstr "Ustawienia główne" msgid "Grant access to LuCI app adblock" msgstr "Udziel dostępu LuCI do aplikacji adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" -msgstr "Informacja" +msgstr "Informacje" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "Katalog więzienia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Ostatnie uruchomienie" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "Ostatnie zapytania DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "Limit SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "Limit SafeSearch dla certyfikowanych dostawców." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "Numer wiersza do usunięcia" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "Lista dostępnych urządzeń sieciowych używanych przez tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -411,7 +426,7 @@ msgstr "" "'nieokreślone', aby użyć klasycznego limitu czasu uruchamiania zamiast " "wyzwalacza sieciowego." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -419,51 +434,25 @@ msgstr "" "Lista obsługiwanych zapleczy DNS z domyślnym katalogiem list. Aby zastąpić " "domyślną ścieżkę, użyj opcji 'Katalog DNS'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"Lista obsługiwanych i w pełni skonfigurowanych źródeł adblock, niektóre " -"aktywne źródła są wstępnie wybrane. <br /> <b> <em> Aby uniknąć błędów OOM, " -"nie wybieraj zbyt wielu list! </em> </b> <br /> Informacje o rozmiarze dla " -"odpowiednich zakresów domen wyglądają w następujący sposób:<br /> •" -" <b>S</b> (-10k), <b>M</b> (10k-30k) i <b>L</b> (30k-80k) powinny " -"działać na urządzeniach z 128 MB pamięci RAM<br /> • <b>XL</b> " -"(80k-200k) powinny działać na urządzeniach z 256-512 MB pamięci RAM,<br /> " -"• <b>XXL</b> (200k-) wymagają więcej pamięci RAM i obsługi " -"wielordzeniowej, np. urządzenia x86 lub urządzenia typu raspberry.<br /> " -"<p> </p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Lista obsługiwanych i wstępnie skonfigurowanych narzędzi do pobierania." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Lokalne porty DNS" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "Widok dziennika" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Usługa niskopriorytetowa" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Nazwa/Adres IP" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Brak wyników zapytania!" @@ -476,11 +465,11 @@ msgstr "Brak dzienników związanych z adblockiem!" msgid "Overview" msgstr "Przegląd" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." -msgstr "Profil używany przez 'msmtp' do powiadamiania o blokadzie email." +msgstr "Profil używany przez 'msmtp' do powiadamiania o blokadzie e-mail." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Zapytanie" @@ -490,27 +479,27 @@ msgstr "" "Wysyłaj zapytania do aktywnych list blokowania i kopii zapasowych dla " "określonej domeny." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -"Zwiększ liczbę powiadomień, aby otrzymywać wiadomości email jeśli ogólna " +"Zwiększ liczbę powiadomień, aby otrzymywać wiadomości e-mail jeśli ogólna " "liczba blokowanych list jest mniejsza lub równa podanemu limitowi." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." -msgstr "Adres odbiorcy dla powiadomień email adblocka." +msgstr "Adres odbiorcy dla powiadomień e-mail adblocka." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Przekieruj wszystkie zapytania DNS ze strefy LAN do lokalnego programu " -"obsługi DNS, dotyczy protokołu UDP i TCP." +"Przekieruj wszystkie zapytania DNS z określonych stref do lokalnego " +"resolwera DNS, dotyczy protokołów UDP i TCP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -519,115 +508,117 @@ msgstr "" "Zmniejsz priorytet przetwarzania w tle, aby pobierać mniej zasobów systemu. " "Uwaga: wymagany restart usługi adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Odśwież" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Odśwież raport DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "Odśwież zegar" +msgstr "Zaktualizuj listy automatycznie" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." -msgstr "Odśwież zegar..." +msgstr "Harmonogram..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Odświeżanie..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "Odpoczynek SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "Przeładuj" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "Usuń istniejące zadanie" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Zgłoś liczbę fragmentów" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Zgłoś wielkość porcji" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Katalog raportów" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Interfejs raportowania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Porty raportowania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "Raportuj liczbę fragmentów używaną przez tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Raportuj wielkość fragmentów używaną przez tcpdump w MB." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" -"Resetuje ostateczną listę bloków DNS 'adb_list.overall' po załadowaniu " -"zaplecza DNS. Uwaga: Ta opcja uruchamia w tle mały monitor ubus/adblock." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "Restart" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Wynik" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "Uruchomione katalogi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "Uruchomione flagi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "Uruchomione interfejsy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "Uruchomione narzędzia" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Zapisz" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -"Wysyłaj powiadomienia email związane z adblock. Uwaga: wymaga to dodatkowej " +"Wysyłaj powiadomienia e-mail związane z adblock. Uwaga: wymaga to dodatkowej " "instalacji pakietu 'msmtp'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." -msgstr "Adres nadawcy dla powiadomień emailowych adblocka." +msgstr "Adres nadawcy dla powiadomień e-mailowych adblocka." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "Ustaw/Zmień nowe zadanie Adblock" +msgid "Set a new adblock job" +msgstr "Ustaw nowe zadanie adblocka" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Ustawienia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." @@ -635,75 +626,61 @@ msgstr "" "Rozmiar kolejki pobierania do przetwarzania plików (w tym sortowanie, " "łączenie itp.) równolegle." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "Źródła (wielkość, skupienie)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" -"Rozdzielona spacjami lista portów zapory związanych z DNS, które należy " -"wymusić lokalnie." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "Rozdzielona spacjami lista portów używanych przez tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "Specjalne opcje konfiguracji dla wybranego narzędzia do pobierania." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Data rozpoczęcia" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "Sygnatura czasowa uruchamiania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "Interfejs wyzwalacza uruchamiania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "Status/Wersja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Zawieś" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" -"Katalog docelowy dla plików raportowania. Domyślnie jest to '/ tmp', " -"najlepiej użyj pamięci USB." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." +msgstr "Katalog docelowy dla plików raportów związanych z DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" -"Katalog docelowy dla kopii zapasowych listy zablokowanych. Domyślnie jest to " -"'/tmp', użyj najlepiej pamięci USB lub innego dysku lokalnego." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "Katalog docelowy dla kopii zapasowych listy blokującej." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" "Katalog docelowy dla wygenerowanej listy blokowania 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" "Katalog docelowy dla wygenerowanej listy zablokowanych 'adb_list.jail'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." -msgstr "Nie można zaktualizować odświeżania zegara." +msgstr "Nie można zaktualizować czasu odświeżania." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." -msgstr "Odświeżanie zegara zostało zaktualizowane." +msgstr "Czas odświeżania został zaktualizowany." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" @@ -744,19 +721,19 @@ msgstr "" "<br /> Uwaga: dodaj tylko jedną domenę na linię. Komentarze wprowadzone z " "'#' są dozwolone - adresy ip, wildcards i regex nie są dozwolone." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -"Pokazuje ostatni wygenerowany raport DNS, naciśnij przycisk odświeżania, aby " -"uzyskać bieżący." +"Ta zakładka pokazuje ostatni wygenerowany raport DNS, naciśnij przycisk " +"'Odśwież', aby uzyskać aktualny raport." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Czas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Limit czasu oczekiwania na pomyślne ponowne uruchomienie zaplecza DNS." @@ -768,15 +745,19 @@ msgstr "" "Aby twoje listy były aktualne, powinieneś ustawić automatyczne zadanie " "aktualizacji dla tych list." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "Top 10" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." -msgstr "Temat dla powiadomień email adblocka." +msgstr "Temat dla powiadomień e-mail adblocka." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "Łączna liczba żądań DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Opóźnienie wyzwalacza" @@ -785,7 +766,12 @@ msgstr "Opóźnienie wyzwalacza" msgid "Unable to save changes: %s" msgstr "Nie można zapisać zmian: %s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "Warianty" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Pełne rejestrowanie debugowania" @@ -798,34 +784,127 @@ msgstr "" "Zmiany na białej liście zostały zapisane. Odśwież listę, aby zmiany zostały " "wprowadzone." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Biała lista ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "maks. rozmiar zestawu wyników" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "Zmiany na tej karcie wymagają ponownego uruchomienia usługi Adblock, aby " +#~ "zostały wprowadzone. <br /> <p>   </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "Resetuj plik DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Lista obsługiwanych i w pełni skonfigurowanych źródeł adblock, niektóre " +#~ "aktywne źródła są wstępnie wybrane. <br /> <b> <em> Aby uniknąć błędów " +#~ "OOM, nie wybieraj zbyt wielu list! </em> </b> <br /> Informacje o " +#~ "rozmiarze dla odpowiednich zakresów domen wyglądają w następujący sposób:" +#~ "<br /> • <b>S</b> (-10k), <b>M</b> (10k-30k) i <b>L</b> " +#~ "(30k-80k) powinny działać na urządzeniach z 128 MB pamięci RAM<br /> " +#~ "• <b>XL</b> (80k-200k) powinny działać na urządzeniach z " +#~ "256-512 MB pamięci RAM,<br /> • <b>XXL</b> (200k-) wymagają " +#~ "więcej pamięci RAM i obsługi wielordzeniowej, np. urządzenia x86 lub " +#~ "urządzenia typu raspberry.<br /> <p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Resetuje ostateczną listę bloków DNS 'adb_list.overall' po załadowaniu " +#~ "zaplecza DNS. Uwaga: Ta opcja uruchamia w tle mały monitor ubus/adblock." + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "Ustaw/Zmień nowe zadanie Adblock" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Katalog docelowy dla plików raportowania. Domyślnie jest to '/ tmp', " +#~ "najlepiej użyj pamięci USB." + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Katalog docelowy dla kopii zapasowej list. Domyślnie jest to '/tmp', użyj " +#~ "najlepiej pamięci USB lub innego dysku." + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "Pokazuje ostatni wygenerowany raport DNS, naciśnij przycisk odświeżania, " +#~ "aby uzyskać bieżący." + +#~ msgid "Local DNS Ports" +#~ msgstr "Lokalne porty DNS" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Przekieruj wszystkie zapytania DNS ze strefy LAN do lokalnego programu " +#~ "obsługi DNS, dotyczy protokołu UDP i TCP." + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "" +#~ "Rozdzielona spacjami lista portów zapory związanych z DNS, które należy " +#~ "wymusić lokalnie." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "Żądania DNS (zablokowane)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "Żądania DNS (ogółem)" + +#~ msgid "End Date" +#~ msgstr "Data końcowa" + +#~ msgid "Start Date" +#~ msgstr "Data rozpoczęcia" + #~ msgid "SafeSearch Moderate" #~ msgstr "Moderuj filtr SafeSearch" diff --git a/applications/luci-app-adblock/po/pt/adblock.po b/applications/luci-app-adblock/po/pt/adblock.po index d24cee84b3..4c9397bbc6 100644 --- a/applications/luci-app-adblock/po/pt/adblock.po +++ b/applications/luci-app-adblock/po/pt/adblock.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-17 19:42+0000\n" +"PO-Revision-Date: 2021-03-13 09:19+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/pt/>\n" @@ -8,13 +8,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- não especificado -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Ação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Fontes Ativas" @@ -43,45 +48,45 @@ msgstr "Adicione este (sub)domínio na sua lista negra local." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adicione este (sub)domínio na sua lista branca local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "Lista de Bloqueio Priosional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "Configurações Adicionais" +msgstr "Configurações adicionais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Atraso adicional do gatilho em segundos antes do processamento do adblock " "começar." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Configurações Avançadas do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "Configurações Avançadas do E-Mail" +msgstr "Configurações avançadas de E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Configurações Avançadas do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Resposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Diretório do Backup" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Diretório Base Temporário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -99,19 +104,23 @@ msgstr "" "As alterações na lista negra foram gravadas. Atualize as suas listas de " "adblock para que as alterações entrem em vigor." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Lista negra..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Solicitações de DNS bloqueadas" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Domínio Bloqueado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Domínios Bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Cópia de Segurança da Lista de Bloqueio" @@ -119,15 +128,15 @@ msgstr "Cópia de Segurança da Lista de Bloqueio" msgid "Blocklist Query" msgstr "Consulta na Lista de Bloqueio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Pesquisando a Lista de Bloqueio..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Origem da Blocklist" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -140,25 +149,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "" -"As alterações nesta guia precisam de uma reinicialização completa do serviço " -"adblock para entrar em vigor.<br /><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "Categorias" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Cliente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -170,13 +176,13 @@ msgstr "" "packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" rel=" "\"noreferrer noopener\" >verifique a documentação on-line</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Contagem" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." @@ -184,50 +190,38 @@ msgstr "" "Crie cópias de segurança compactados da lista de bloqueio, estes serão " "usados em caso de erros de descarregamento ou durante a inicialização." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "Infraestrutura do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Diretório DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Repor o ficheiro DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "Relatório do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "Solicitações do DNS (bloqueadas)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "Solicitações do DNS (total)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "Tempo Limite para Reiniciar o DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Desativar a opção DNS Permitir" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Desativar as Reinicializações do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -235,50 +229,50 @@ msgstr "" "Desativar o adblock que causar a reinicialização das funções autoload/" "inotify da infraestrutura do DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Desativa a lista branca seletiva do DNS (passagem pelo RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domínio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Parâmetros de Descarregamento" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "Fila de Descarregamento" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Ferramenta para Descarregar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Notificação por e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "Contagem de Notificações por E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "Perfil de E-Mail" +msgstr "Perfil de e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "Endereço do destinatário de e-mail" +msgstr "Endereço de e-mail do destinatário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "Endereço de E-Mail do Remetente" +msgstr "Endereço de e-mail do remetente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "Assunto do E-Mail" +msgstr "Assunto do e-mail" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 @@ -290,33 +284,33 @@ msgstr "Editar Lista Negra" msgid "Edit Whitelist" msgstr "Editar lista de permissões" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "Ativar o SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "Ativar os filtros SafeSearch de forma moderada para o Youtube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Ativar o serviço adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -"Ativa o registo de depuração detalhada nos casos de qualquer erro de " +"Ativa o registo de depuração detalhado para casos de todos os erros de " "processamento." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Data final" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Carimbo de tempo final" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -328,11 +322,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Tarefa(s) existente(s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "Domínio de Pesquisa Externa do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -341,23 +335,39 @@ msgstr "" "infraestrutura do DNS. Nota: defina como 'falsa' para desativar esta " "verificação." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Filtrar critérios como data, domínio ou cliente (opcional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "Portas da firewall que devem ser localmente forçadas." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "Zonas fonte da firewall que devem ser localmente forçadas." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Limpar o cache de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Também limpar o Cache do DNS antes do adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Forçar o DNS Local" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Portas forçadas" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Zonas forçadas" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -368,43 +378,47 @@ msgstr "" "pacote 'tcpdump-mini' e a reinicialização completa do serviço do adblock " "para que as modificações entrem em vigor." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "Configurações Gerais" +msgstr "Configurações gerais" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "Conceda acesso à app LuCI adblock" +msgstr "Conceder acesso à app LuCI adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Informação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "Diretório Prisional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "As últimas solicitações do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "Limite do SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "Limite o SafeSearch a determinados provedores." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "Número da linha a remover" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "Lista de aparelhos da rede disponíveis que foram usados pelo tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -413,7 +427,7 @@ msgstr "" "'não especificado' para usar um tempo de inicialização clássico em vez de um " "gatilho de rede." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -422,51 +436,26 @@ msgstr "" "de diretório. Para substituir o caminho predefinido, use a opção 'Diretório " "DNS'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"Listagem das fontes de adblock compatíveis e totalmente pré-configuradas, as " -"fontes já ativas estão pré-selecionadas.<br /> <b><em>Para evitar erros do " -"tipo OOM, não selecione muitas listas!</em></b><br /> Lista o tamanho da " -"informação com as suas respetivas faixas de domínio da seguinte maneira:<br /" -"> • <b>S</b> (-10k), <b>M</b> (10k-30k) e <b>L</b> (30k-80k) deve " -"funcionar para aparelhos com 128 MByte de memória,<br /> • <b>XL</" -"b> (80k-200k) deve funcionar com aparelhos com 256-512 MByte de memória,<br /" -"> • <b>XXL</b> (200k-) precisa de mais suporte a RAM e Multicore, " -"por exemplo. x86 ou aparelhos raspberry.<br /> <p> </p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Lista de ferramentas de descarregamento suportadas e completamente pré-" "configuradas." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Portas DNS Locais" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "Exibir o Registo" +msgstr "Vista do registo log" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Serviço de Baixa Prioridade" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Nome / Endereço IP" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "A consulta não retornou resultados!" @@ -479,11 +468,11 @@ msgstr "Ainda não há registos relacionados ao adblock!" msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Perfil dos e-mails de notificação do adblock utilizado por 'msmtp'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Consulta" @@ -493,7 +482,7 @@ msgstr "" "Consulta as listas de bloqueios ativos e as cópias de segurança para um " "domínio específico." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -501,19 +490,19 @@ msgstr "" "Aumente a contagem de notificações para receber e-mails caso a contagem " "geral das listas de bloqueio seja menor ou igual ao limite informado." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "Endereço do destinatário para e-mails de notificação do adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Redirecione todas as consultas de DNS da zona 'lan' para o resolvedor de DNS " -"local, aplica-se ao protocolo UDP e TCP." +"Redirecionar todas as consultas DNS de zonas especificadas para o resolvedor " +"DNS local, aplica-se ao protocolo UDP e TCP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -523,12 +512,11 @@ msgstr "" "economizar os recursos do sistema. Nota: Esta alteração requer uma " "reinicialização completa do serviço adblock para que faça efeito." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Atualizar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Atualizar o Relatório do DNS" @@ -536,83 +524,85 @@ msgstr "Atualizar o Relatório do DNS" msgid "Refresh Timer" msgstr "Atualizar Temporizador" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "Atualizando o Temporizador..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Atualizar..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "Alivie o SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "Recarregar" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "Remover uma tarefa existente" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Relatar Contagem de Porções" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Tamanho de Porções de Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Diretório de Relatórios" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Interface de Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Relatório das Portas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "Informar a contagem dos pedaços usados pelo tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Informar o tamanho do pedaço utilizado pelo tcpdump em MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" -"Reinicialisa a lista final de bloqueio do DNS 'adb_list.overall' após o " -"carregamento da infraestrutura do DNS. Nota: Esta opção inicia um pequeno " -"monitor ubus/adblock em segundo plano." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "Reiniciar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Resultado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "Executar Diretórios" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "Flags de Execução" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "Executar Interfaces" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "Executar Utilitários" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Guardar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." @@ -620,98 +610,82 @@ msgstr "" "Envie e-mails de notificação relacionados ao adblock. Note que: a instalação " "adicional do pacote 'msmtp' é necessária." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "Endereço E-Mail do remetente para as notificações do adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "Definir/Substituir um novo trabalho de adblock" +msgid "Set a new adblock job" +msgstr "Definir uma nova tarefa de adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -"Tamanho da fila de descarregamento para o processamento de descarregamento (" -"incl. classificação, fusão etc.) em paralelo." +"Tamanho da fila de descarregamento para o processamento de descarregamento " +"(incl. classificação, fusão etc.) em paralelo." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "Fontes (Tamanho, Foco)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" -"Lista separada por espaço das portas de firewall relacionadas ao DNS que " -"devem ser impostas localmente." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "Lista separada por espaço das portas utilizadas pelo tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" "Opções especiais de configuração para o utilitário de descarregamento " "selecionado." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Data de Início" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "Carimbo de tempo incial" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "Interface do Gatilho de Inicialização" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "Estado / Versão" +msgstr "Condição geral / versão" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Suspender" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" -"Diretório de destino para os ficheiros de relatório relacionados ao DNS. O " -"diretório predefinido é '/tmp', use preferencialmente um pendrive ou um " -"outro disco local." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." +msgstr "Diretório de destino para ficheiros de relatório relacionados ao DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" -"Diretório de destino para a cópia de segurança das listas de bloqueio. O " -"diretório predefinido é '/tmp', use preferencialmente um pendrive ou outro " -"disco local." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "Diretório de destino para os backups de listas de bloqueio." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" "Diretório de destino para a lista de blocos 'adb_list.overall' gerada ." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" "Diretório de destino para a lista que for gerada pelo lista de bloqueio " "prisional 'adb_list.jail'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "Não foi possível atualizar o tempo de atualização do temporizador." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "O tempo de atualização foi atualizado." @@ -753,19 +727,19 @@ msgstr "" "permitidos.<br /> Nota: adicione apenas um domínio por linha. Comentários " "introduzidos com '#' são permitidos - endereços ip, curingas e regex não são." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -"Exibe o último Relatório DNS gerado, pressione o botão de atualização para " -"obter um atual." +"Esta guia mostra o último relatório DNS gerado, pressione o botão " +"'Atualizar' para obter o relatório atual." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Tempo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Tempo limite para aguardar o reinício bem sucedido do DNS." @@ -777,16 +751,20 @@ msgstr "" "Para manter as suas listas de adblock atualizadas, deve configurar uma " "tarefa de atualização automática para essas listas." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "As 10 Estatísticas Principais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" "Defina o assunto dos e-mails que serão usados nas notificações do adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "Total de solicitações de DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Atraso do Gatilho" @@ -795,9 +773,14 @@ msgstr "Atraso do Gatilho" msgid "Unable to save changes: %s" msgstr "Impossível gravar as modificações: %s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "Variantes" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" -msgstr "Registro de Depuração Detalhado" +msgstr "Registos detalhados de depuração" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:69 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:15 @@ -808,35 +791,131 @@ msgstr "" "As modificações feitas na lista branca foram salvas. Atualize a sua lista de " "adblock para que as modificações feitas tenham efeito." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Lista Branca..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "def. a quantidade máxima de resultados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" #~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "As alterações nesta guia precisam de uma reinicialização completa do " +#~ "serviço adblock para entrar em vigor.<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "Repor o ficheiro DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Listagem das fontes de adblock compatíveis e totalmente pré-configuradas, " +#~ "as fontes já ativas estão pré-selecionadas.<br /> <b><em>Para evitar " +#~ "erros do tipo OOM, não selecione muitas listas!</em></b><br /> Lista o " +#~ "tamanho da informação com as suas respetivas faixas de domínio da " +#~ "seguinte maneira:<br /> • <b>S</b> (-10k), <b>M</b> (10k-30k) " +#~ "e <b>L</b> (30k-80k) deve funcionar para aparelhos com 128 MByte de " +#~ "memória,<br /> • <b>XL</b> (80k-200k) deve funcionar com " +#~ "aparelhos com 256-512 MByte de memória,<br /> • <b>XXL</b> " +#~ "(200k-) precisa de mais suporte a RAM e Multicore, por exemplo. x86 ou " +#~ "aparelhos raspberry.<br /> <p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Reinicialisa a lista final de bloqueio do DNS 'adb_list.overall' após o " +#~ "carregamento da infraestrutura do DNS. Nota: Esta opção inicia um pequeno " +#~ "monitor ubus/adblock em segundo plano." + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "Definir/Substituir um novo trabalho de adblock" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Diretório de destino para os ficheiros de relatório relacionados ao DNS. " +#~ "O diretório predefinido é '/tmp', use preferencialmente um pendrive ou um " +#~ "outro disco local." + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Diretório de destino para a cópia de segurança das listas de bloqueio. O " +#~ "diretório predefinido é '/tmp', use preferencialmente um pendrive ou " +#~ "outro disco local." + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "Exibe o último Relatório DNS gerado, pressione o botão de atualização " +#~ "para obter um atual." + +#~ msgid "Local DNS Ports" +#~ msgstr "Portas DNS Locais" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Redirecione todas as consultas de DNS da zona 'lan' para o resolvedor de " +#~ "DNS local, aplica-se ao protocolo UDP e TCP." + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "" +#~ "Lista separada por espaço das portas de firewall relacionadas ao DNS que " +#~ "devem ser impostas localmente." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "Solicitações do DNS (bloqueadas)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "Solicitações do DNS (total)" + +#~ msgid "End Date" +#~ msgstr "Data final" + +#~ msgid "Start Date" +#~ msgstr "Data de Início" + +#~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" #~ msgstr "" diff --git a/applications/luci-app-adblock/po/pt_BR/adblock.po b/applications/luci-app-adblock/po/pt_BR/adblock.po index 52012123bd..9b9072e3a0 100644 --- a/applications/luci-app-adblock/po/pt_BR/adblock.po +++ b/applications/luci-app-adblock/po/pt_BR/adblock.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-06-14 14:42+0000\n" +"PO-Revision-Date: 2021-03-23 11:29+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsadblock/pt_BR/>\n" @@ -11,13 +11,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- não especificado -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Ação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Fontes Ativas" @@ -46,45 +51,45 @@ msgstr "Adicione este (sub)domínio na sua lista negra local." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adicione este (sub)domínio na sua lista branca local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "Lista de Bloqueio Adicional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Configurações Adicionais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Atraso de gatilho adicional em segundos antes do processamento do adblock " "começar." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Configurações Avançadas do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "Configurações Avançadas do E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Configurações Avançadas do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Resposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Diretório da cópia de segurança" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Diretório Base Temporário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -102,19 +107,23 @@ msgstr "" "As alterações na lista negra foram salvas. Atualize as suas listas de " "bloqueio de anúncios para que as alterações entrem em vigor." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Lista negra..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Requisições bloqueadas do DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Domínios Bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Domínios Bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Cópia de Segurança da Lista de Bloqueio" @@ -122,15 +131,15 @@ msgstr "Cópia de Segurança da Lista de Bloqueio" msgid "Blocklist Query" msgstr "Consulta na Lista de Bloqueio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Pesquisando a Lista de Bloqueio..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" -msgstr "Fontes de listas de bloqueio" +msgstr "Fontes das listas de bloqueio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -143,25 +152,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "" -"As alterações nesta guia precisam de uma reinicialização completa do serviço " -"adblock para entrar em vigor.<br /><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "Categorias" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Cliente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -173,13 +179,13 @@ msgstr "" "packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" rel=" "\"noreferrer noopener\" >verifique a documentação on-line</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Contagem" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." @@ -187,50 +193,38 @@ msgstr "" "Crie cópias de segurança compactados da lista de bloqueio, estes serão " "usados em caso de erros de download ou durante a inicialização." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "Infraestrutura do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Diretório DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Zerar Arquivo de DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "Relatório do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "Solicitações do DNS (bloqueadas)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "Solicitações do DNS (total)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "Tempo Limite para Reiniciar o DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Dia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Desativar a opção DNS Permitir" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Desativar as Reinicializações do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -238,48 +232,48 @@ msgstr "" "Desative o bloqueador de anúncios que causar a reinicialização das funções " "autoload/inotify da infraestrutura do DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Desative a lista branca seletiva do DNS (passagem pelo RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domínio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Parâmetros de Download" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "Fila de Download" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Ferramenta para Baixar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Notificação por E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "Contagem de Notificações por E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "Perfil de E-Mail" +msgstr "E-Mail do Perfil" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "Endereço de E-Mail do Destinatário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "Endereço de E-Mail do Remetente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "Assunto do E-Mail" @@ -293,33 +287,33 @@ msgstr "Editar a Lista Negra" msgid "Edit Whitelist" msgstr "Editar a Lista Branca" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "Ativar o SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "Ativar os filtros SafeSearch de forma moderada para o youtube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Ativar o serviço de bloqueio de anúncios." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Ativa o registro de depuração detalhada nos casos de qualquer erro de " "processamento." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Data Final" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Fim da marca temporal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -331,11 +325,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Tarefa(s) existente(s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "Domínio de Pesquisa Externa do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -344,23 +338,39 @@ msgstr "" "infraestrutura do DNS. Nota: Defina como 'falsa' para desativar esta " "verificação." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Filtrar critérios como data, domínio ou cliente (opcional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "As portas do firewall que devem ser impostas localmente." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "Zonas de origem do firewall que devem ser imposta localmente." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Limpar a Cache do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Também liberar o Cache do DNS antes do bloqueador de anúncios." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Usar o DNS Local" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Portas Impostas" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Zonas Impostas" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -371,44 +381,48 @@ msgstr "" "pacote 'tcpdump-mini' e da reinicialização completa do serviço do bloqueio " "de anúncios para que as modificações entrem em vigor." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "Configurações Gerais" +msgstr "Configurações gerais" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "Conceda acesso ao aplicativo LuCI adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Informações" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "Diretório Prisional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "As últimas solicitações do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "Limite do SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "Limite o SafeSearch a determinados fornecedores." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "O número da linha para remover" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" "Lista de dispositivos da rede disponíveis que foram usados pelo tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -417,7 +431,7 @@ msgstr "" "Escolha 'não especificado' para usar um tempo de inicialização clássico em " "vez de um gatilho de rede." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -426,50 +440,24 @@ msgstr "" "de diretório. Para substituir o caminho predefinido, use a opção 'Diretório " "DNS'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"Listagem das fontes de bloqueio de anúncios compatíveis e totalmente pré-" -"configuradas, as fontes já ativas estão pré-selecionadas.<br /> <b><em>Para " -"evitar erros do tipo OOM, não selecione muitas listas!</em></b><br /> Lista " -"o tamanho da informação com as suas respectivas faixas de domínio da " -"seguinte maneira:<br /> • <b>S</b> (-10k), <b>M</b> (10k-30k) e " -"<b>L</b> (30k-80k) deve funcionar para dispositivos com 128 MByte de memória," -"<br /> • <b>XL</b> (80k-200k) deve funcionar com dispositivos com " -"256-512 MByte de memória,<br /> • <b>XXL</b> (200k-) precisa de " -"mais suporte a RAM e Multicore, por exemplo. x86 ou dispositivos raspberry." -"<br /> <p> </p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "Lista de ferramentas compatíveis e já pré-configuradas para download." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Portas DNS Locais" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "Exibir o Registro Log" +msgstr "Exiba o registro log" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Serviço de Baixa Prioridade" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Nome / Endereço-IP" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "A Consulta Não Retornou Resultados!" @@ -480,15 +468,15 @@ msgstr "Ainda não há registros relacionados ao bloqueio de anúncio!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" -msgstr "Visão Geral" +msgstr "Visão geral" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" "Perfil dos E-Mails de notificação do bloqueio de anúncio utilizado por " "'msmtp'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Consulta" @@ -498,7 +486,7 @@ msgstr "" "Consulta as listas de bloqueios ativos e as cópias de segurança para um " "domínio específico." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -506,21 +494,21 @@ msgstr "" "Aumente a contagem de notificações para receber E-Mails caso a contagem " "geral das listas de bloqueio seja menor ou igual ao limite informado." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -"Endereço de E-Mail do destinatário para recebimento das notificações do " +"Endereço do E-Mail do destinatário para o recebimento das notificações do " "adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Redirecione todas as consultas de DNS da zona 'lan' para o resolvedor de DNS " -"local, aplica-se ao protocolo UDP e TCP." +"Redirecione todas as consultas DNS das zonas especificadas para o resolvedor " +"do DNS local, aplica-se ao protocolo UDP e TCP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -531,96 +519,97 @@ msgstr "" "alteração requer uma reinicialização completa do serviço adblock para que " "surta efeito." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Atualizar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Atualizar o Relatório do DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "Atualizar Temporizador" +msgstr "Atualize o Temporizador" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "Atualizando o Temporizador..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Atualizar..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "Alivie o SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "Recarregar" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "Exclua uma tarefa já existente" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "Contagem de Pedaços do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Tamanho dos Pedaços do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Diretório do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Interface do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Relatório das Portas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "Informar a contagem dos pedaços usados pelo tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Informar o tamanho do pedaço utilizado pelo tcpdump em MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" -"Zera a lista final de bloqueio do DNS 'adb_list.overall' após o carregamento " -"da infraestrutura do DNS. Nota: Esta opção inicia um pequeno monitor ubus/" -"adblock em segundo plano." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "Reiniciar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Resultado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "Executar Diretórios" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "Executar Flags" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "Executar Interfaces" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "Executar Utilitários" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Salvar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." @@ -628,20 +617,20 @@ msgstr "" "Envie E-Mails de notificação relacionados ao bloqueio de anúncios. Note que: " "é necessário a instalação adicional do pacote 'msmtp'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" "Endereço E-Mail do remetente para as notificações do bloqueador de anúncios." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "Definir/Substituir um novo trabalho de bloqueio de anúncios" +msgid "Set a new adblock job" +msgstr "Defina uma nova tarefa ao adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." @@ -649,76 +638,61 @@ msgstr "" "Tamanho da fila de download para o processamento de download (incl. " "classificação, fusão etc.) em paralelo." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "Fontes (Tamanho, Foco)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" -"Lista separada por espaço das portas de firewall relacionadas ao DNS que " -"devem ser impostas localmente." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "Lista separada por espaço das portas utilizadas pelo tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" "Opções especiais de configuração para o utilitário de download selecionado." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Data de Início" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "Início da marca temporal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "Interface do Gatilho de Inicialização" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "Condição Geral / Versão" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Suspender" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -"Diretório de destino para os arquivos de relatório relacionados ao DNS. O " -"diretório predefinido é '/tmp', use preferencialmente um pendrive ou um " -"outro disco local." +"Diretório de destino dos relatórios para os arquivos relacionados ao DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" -"Diretório de destino para a cópia de segurança das listas de bloqueio. O " -"diretório predefinido é '/tmp', use preferencialmente um pendrive ou outro " -"disco local." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "O diretório de destino para os backups da lista de bloqueio." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Caminho do diretório para a lista nega gerada 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" "Diretório de destino para a lista que for gerada pelo lista de bloqueio " "prisional 'adb_list.jail'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "Não foi possível atualizar o tempo de atualização do temporizador." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "O tempo de atualização foi atualizado." @@ -761,19 +735,19 @@ msgstr "" "Comentários introduzidos com '#' são permitidos - endereços ip, curingas e " "regex não são." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -"Exibe o último Relatório DNS gerado, pressione o botão de atualização para " -"obter um atual." +"Esta guia mostra o último relatório gerado do DNS, clique no botão " +"'Atualizar' para obter o mais atual." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Tempo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Tempo limite para aguardar o reinício bem sucedido do DNS." @@ -785,17 +759,21 @@ msgstr "" "Para manter as suas listas de bloqueio de anúncios atualizadas, você deve " "configurar uma tarefa de atualização automática para essas listas." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "As 10 Estatísticas Principais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" "Defina o assunto dos E-Mais que serão usados nas notificações do bloqueador " "de anúncios." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "Total das solicitações do DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Gatilho de Atraso" @@ -804,7 +782,12 @@ msgstr "Gatilho de Atraso" msgid "Unable to save changes: %s" msgstr "Impossível salvar as modificações: %s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "Variantes" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Registros Detalhados de Depuração" @@ -817,34 +800,130 @@ msgstr "" "As modificações feitas na lista branca foram salvas. Atualize a sua lista de " "bloqueio de anúncios para que as modificações feitas surtam efeito." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Lista Branca..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "def. a quantidade máxima de resultados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "As alterações nesta guia precisam de uma reinicialização completa do " +#~ "serviço adblock para entrar em vigor.<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "Zerar Arquivo de DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Listagem das fontes de bloqueio de anúncios compatíveis e totalmente pré-" +#~ "configuradas, as fontes já ativas estão pré-selecionadas.<br /> " +#~ "<b><em>Para evitar erros do tipo OOM, não selecione muitas listas!</em></" +#~ "b><br /> Lista o tamanho da informação com as suas respectivas faixas de " +#~ "domínio da seguinte maneira:<br /> • <b>S</b> (-10k), <b>M</b> " +#~ "(10k-30k) e <b>L</b> (30k-80k) deve funcionar para dispositivos com 128 " +#~ "MByte de memória,<br /> • <b>XL</b> (80k-200k) deve funcionar " +#~ "com dispositivos com 256-512 MByte de memória,<br /> • <b>XXL</" +#~ "b> (200k-) precisa de mais suporte a RAM e Multicore, por exemplo. x86 ou " +#~ "dispositivos raspberry.<br /> <p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Zera a lista final de bloqueio do DNS 'adb_list.overall' após o " +#~ "carregamento da infraestrutura do DNS. Nota: Esta opção inicia um pequeno " +#~ "monitor ubus/adblock em segundo plano." + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "Definir/Substituir um novo trabalho de bloqueio de anúncios" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Diretório de destino para os arquivos de relatório relacionados ao DNS. O " +#~ "diretório predefinido é '/tmp', use preferencialmente um pendrive ou um " +#~ "outro disco local." + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Diretório de destino para a cópia de segurança das listas de bloqueio. O " +#~ "diretório predefinido é '/tmp', use preferencialmente um pendrive ou " +#~ "outro disco local." + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "Exibe o último Relatório DNS gerado, pressione o botão de atualização " +#~ "para obter um atual." + +#~ msgid "Local DNS Ports" +#~ msgstr "Portas DNS Locais" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Redirecione todas as consultas de DNS da zona 'lan' para o resolvedor de " +#~ "DNS local, aplica-se ao protocolo UDP e TCP." + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "" +#~ "Lista separada por espaço das portas de firewall relacionadas ao DNS que " +#~ "devem ser impostas localmente." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "Solicitações do DNS (bloqueadas)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "Solicitações do DNS (total)" + +#~ msgid "End Date" +#~ msgstr "Data Final" + +#~ msgid "Start Date" +#~ msgstr "Data de Início" + #~ msgid "SafeSearch Moderate" #~ msgstr "SafeSearch Moderado" diff --git a/applications/luci-app-adblock/po/ro/adblock.po b/applications/luci-app-adblock/po/ro/adblock.po index 22d9bf6bf7..bea6120550 100644 --- a/applications/luci-app-adblock/po/ro/adblock.po +++ b/applications/luci-app-adblock/po/ro/adblock.po @@ -11,11 +11,16 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Actiune" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Surse Active" @@ -44,45 +49,45 @@ msgstr "Adăugați acest (sub) domeniu în lista locală de interzise." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adăugați acest (sub) domeniu la lista locală de admise." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Setări Suplimentare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Întârziere adițională înainte ca procesarea adblock-ului să înceapă (în " "secunde)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Setări Avansate DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "Setări Avansate E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Setări Avansate Raport" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Răspuns" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Director copie de siguranţă" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Director Temporar de Bază" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -99,19 +104,23 @@ msgstr "" "Schimbările la Lista de Interzise au fost salvate. Reîmprospătați lista " "adblock pentru ca schimbările să aibă efect." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Lista de Interzise..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Domeniu blocat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Domenii Blocate" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Copie de Rezervă Pentru Lista de Blocate" @@ -119,15 +128,15 @@ msgstr "Copie de Rezervă Pentru Lista de Blocate" msgid "Blocklist Query" msgstr "Interogare Lista de Blocare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Interogare Lista de Blocare..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Surse de blocare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -140,23 +149,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Renunțare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -168,13 +176,13 @@ msgstr "" "com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" "\"_blank\" rel=\"noreferrer noopener\" >verificați documentația online</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Număr" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." @@ -182,50 +190,38 @@ msgstr "" "Creare copii de rezervă comprimate a listei de blocate, acestea vor fi " "utilizate în cazul erorilor de descărcare sau în timpul pornirii." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Director DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "Raport DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "Cereri DNS (blocate)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "Cereri DNS (total)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "Timp Repornire DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "Dezactivare Permite DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Dezactivare Repornire DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -233,48 +229,48 @@ msgstr "" "Dezactivează repornirile declanșate de adblock pentru backend-urile dns cu " "funcții de autoîncărcare /notificare." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domeniu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Descărcare Parametri" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "Coadă de Descărcare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Utilitar descărcare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Notificare e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "Număr de Notificări pe E-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "Profil E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "Adresa E-Mail Expeditor" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "Subiect E-Mail" @@ -288,32 +284,32 @@ msgstr "Editare listă neagră" msgid "Edit Whitelist" msgstr "Editare listă albă" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "Activare Căutare Sigură" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "Activare filtre moderate SafeSearch pentru YouTube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "Activare serviciu adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Activare înregistrare detaliată de depanare în cazul unor erori de procesare." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Data sfârşit" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -325,11 +321,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Activitate(ăți) existentă(e)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "Domeniul de căutare DNS extern" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -338,23 +334,39 @@ msgstr "" "rugăm să rețineți: pentru a dezactiva această verificare, setați această " "opțiune pe „falsă”." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Criterii de filtrare precum dată, domeniu sau client (opțional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Eliberează cache-ul DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Spălare memoria cache DNS înainte de procesarea adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Forţează DNS Local" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -365,7 +377,7 @@ msgstr "" "pachetului „tcpdump-mini” și o repornire completă a serviciului de blocare, " "pentru a avea efect." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "Setări generale" @@ -373,35 +385,39 @@ msgstr "Setări generale" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Informare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "Director Închisoare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Ultima rulare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "Ultimele Cereri DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "Lista dispozitivelor de rețea utilizate de tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -410,7 +426,7 @@ msgstr "" "Alegeți „nespecificat” pentru a utiliza un interval de timp de pornire " "clasic în loc de declanșarea rețelei." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -418,49 +434,24 @@ msgstr "" "Lista DNS-urilor acceptate cu directorul lor al listelor implicite. Pentru a " "rescrie calea implicită, utilizați opțiunea „Director DNS”." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"Lista surselor acceptate și complet pre-configurate ale abdlock, surse deja " -"active sunt preselectate.<br /> <b><em>Pentru a evita erorile OOM, nu " -"selectați prea multe liste!</em></b><br /> Mărimea listei cu informații " -"despre domeniul respectiv variază astfel:<br /> • <b>S</b> " -"(-10k), <b>M</b> (10k-30k) și <b>L</b> (30k-80k) ar trebui să funcționeze " -"pentru dispozitive de 128 MByte,<br /> • <b>XL</b> (80k-200k) ar " -"trebui să funcționeze pentru dispozitivele de 256-512 MByte,<br /> •" -" <b>XXL</b> (200k-) au nevoie de dispozitive cu mai mult RAM și suport " -"Multicore, ex. x86 sau raspberry.<br /> <p> </p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Porturi DNS Locale" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "Vizualizare Jurnal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Nume / Adresă IP" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Nu există rezultate de interogare!" @@ -473,11 +464,11 @@ msgstr "Nu există încă jurnale adblock!" msgid "Overview" msgstr "Prezentare generală" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Profil utilizat de „msmtp” pentru e-mailurile de notificare adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Interogare" @@ -487,7 +478,7 @@ msgstr "" "Interogare listă de blocări active și copii de rezervă pentru un anumit " "domeniu." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -495,19 +486,17 @@ msgstr "" "Creșteți numărul de notificări pentru a primi e-mailuri dacă numărul total " "de blocări este mai mic sau egal cu limita dată." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -"Redirecționare toate interogările DNS din zona „lan” către procesatorul DNS " -"local, se aplică protocolului UDP și TCP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -517,12 +506,11 @@ msgstr "" "puține resurse din sistem. Vă rugăm să rețineți: această modificare necesită " "o repornire completă a serviciului de blocare pentru a avea efect." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Reîmprospătare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "Actualizare Raport DNS" @@ -530,162 +518,159 @@ msgstr "Actualizare Raport DNS" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Salvează" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Data de început" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Suspendă" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -719,17 +704,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -739,15 +724,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Intârzierea declanșării" @@ -756,7 +745,12 @@ msgstr "Intârzierea declanșării" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -767,35 +761,78 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" #~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Lista surselor acceptate și complet pre-configurate ale abdlock, surse " +#~ "deja active sunt preselectate.<br /> <b><em>Pentru a evita erorile OOM, " +#~ "nu selectați prea multe liste!</em></b><br /> Mărimea listei cu " +#~ "informații despre domeniul respectiv variază astfel:<br /> • " +#~ "<b>S</b> (-10k), <b>M</b> (10k-30k) și <b>L</b> (30k-80k) ar trebui să " +#~ "funcționeze pentru dispozitive de 128 MByte,<br /> • <b>XL</b> " +#~ "(80k-200k) ar trebui să funcționeze pentru dispozitivele de 256-512 MByte," +#~ "<br /> • <b>XXL</b> (200k-) au nevoie de dispozitive cu mai " +#~ "mult RAM și suport Multicore, ex. x86 sau raspberry.<br /> <p> </p>" + +#~ msgid "Local DNS Ports" +#~ msgstr "Porturi DNS Locale" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Redirecționare toate interogările DNS din zona „lan” către procesatorul " +#~ "DNS local, se aplică protocolului UDP și TCP." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "Cereri DNS (blocate)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "Cereri DNS (total)" + +#~ msgid "End Date" +#~ msgstr "Data sfârşit" + +#~ msgid "Start Date" +#~ msgstr "Data de început" + +#~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" #~ msgstr "" diff --git a/applications/luci-app-adblock/po/ru/adblock.po b/applications/luci-app-adblock/po/ru/adblock.po index 4ba7260207..c61a28d8d8 100644 --- a/applications/luci-app-adblock/po/ru/adblock.po +++ b/applications/luci-app-adblock/po/ru/adblock.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: adblock\n" "POT-Creation-Date: 2017-10-22 13:00+0300\n" -"PO-Revision-Date: 2020-07-23 06:01+0000\n" -"Last-Translator: sergio <sergio+it@outerface.net>\n" +"PO-Revision-Date: 2021-03-14 05:16+0000\n" +"Last-Translator: Nt0G <nt0gggg@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/ru/>\n" "Language: ru\n" @@ -12,22 +12,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- не указано -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Действие" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Активные источники" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 msgid "Adblock" -msgstr "Adblock Блокировщик рекламы" +msgstr "Блокировщик рекламы" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 msgid "Adblock action" @@ -35,7 +40,7 @@ msgstr "Действие Adblock" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "Добавить домен в черный список" +msgstr "Добавить домен в чёрный список" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" @@ -43,55 +48,55 @@ msgstr "Добавить домен в белый список" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." -msgstr "Добавить (под-)домен в ваш локальный черный список." +msgstr "Добавить этот (под-)домен в локальный чёрный список." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47 msgid "Add this (sub-)domain to your local whitelist." -msgstr "Добавить (под-)домен в ваш локальный белый список." +msgstr "Добавить этот (под-)домен в локальный белый список." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "Дополнительный тюремный блоклист" +msgstr "Дополнительный «тюремный» список блокировок" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Дополнительные настройки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Дополнительная задержка в секундах до начала работы Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" -msgstr "Дополнительные настройки DNS" +msgstr "Расширенные настройки DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "Дополнительные настройки электронной почты" +msgstr "Расширенные настройки электронной почты" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" -msgstr "Расширенные настройки отчетов" +msgstr "Расширенные настройки отчётов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Ответ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Папка для резервных копий" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "Базовый временный каталог" +msgstr "Расположение временных файлов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." msgstr "" -"Временная директория для всех операций во время работы AdBlock-а, например " -"загрузки, сортировки, слияния и т.д." +"Временная папка для «рабочих» операций Adblock, таких, как загрузки, " +"сортировки, слияния и т.п." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 @@ -99,601 +104,609 @@ msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" -"Изменения черного списка сохранены. Обновите списки AdBlock-а, чтобы они " -"вступили в силу." +"Изменения чёрного списка сохранены. Для того, чтобы они вступили в силу, " +"обновите списки блокировок." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." -msgstr "Черный список..." +msgstr "Чёрный список..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Заблокированные DNS-запросы" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" -msgstr "Заблокированные домены" +msgstr "Блокируемый домен" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "Заблокированные домены" +msgstr "Блокируемые домены" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" -msgstr "Бэкап черного списка" +msgstr "Резервная копия чёрного списка" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" -msgstr "Блокировка запросов" +msgstr "Поиск по «чёрному списку»" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." -msgstr "Запросы к черному списку..." +msgstr "Поиск по чёрному списку..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -#, fuzzy +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" -msgstr "Источники черных списков" +msgstr "Источники черного списка" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 -#, fuzzy +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " "blocklist e.g. for guest wifi or kidsafe configurations." msgstr "" "Создает дополнительный блок-список DNS для блокирования доступа ко всем " -"доменам, кроме перечисленных в белом списке. Обратите внимание: Вы можете " -"использовать этот ограничительный блок-список, например, для гостевых " -"конфигураций WiFi или детского режима." +"доменам, кроме перечисленных в белом списке. <br /> <i>Обратите внимание: " +"этот список можно использовать, например, для гостевых Wi-Fi или " +"родительских ограничений.</i>" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Отмена" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "" -"Для вступления в силу изменений на этой вкладке требуется полный перезапуск " -"службы adblock.<br />2<p>3 4</p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "Категории" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Клиент" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 -#, fuzzy +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" -"Конфигурация AdBlock-а для блокировки рекламных/мошеннических доменов с " -"помощью DNS. Чтобы получить больше информации, прочитайте <a href=\"https://" -"github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" -"\"_blank\" rel=\"noreferrer noopener\" >онлайн документацию</a>" +"Конфигурация Adblock для блокировки рекламных/мошеннических доменов с " +"помощью DNS. Для получения дополнительной информации, обратитесь к <a href=" +"\"https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md" +"\" target=\"_blank\" rel=\"noreferrer noopener\" >онлайн документации</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Количество" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -"Создать сжатые бэкапы списков блокировок, для использования при проблемах с " -"загрузкой или во время запуска." +"Создание сжатых резервных копий списков блокировок для использования при " +"различных проблемах с загрузкой или во время запуска." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" -msgstr "DNS-серверная часть" +msgstr "Служба DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "Папка DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Сброс файла DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" -msgstr "Отчет DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "DNS запросы (заблокированы)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "DNS запросов (всего)" +msgstr "Отчёт DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "Таймаут перезапуска DNS" +msgstr "Тайм-аут перезапуска DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Дата" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "Отключить DNS ответы" +msgstr "Отключить пропуск DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "Отключить перезагрузки DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -"Отключить триггеры, запускаемые adblock, для dns backends с функциями " -"автозагрузки/inotify." +"Отключить перезапуски служб DNS с функциями автозагрузки/inotify, вызываемые " +"Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#, fuzzy msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "" +msgstr "Запретить избирательное применение белого списка DNS (сквозное RPZ)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Домен" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "Параметры загрузки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "Очередь загрузки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" -msgstr "Утилита для скачивания" +msgstr "Утилита для загрузки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "Уведомление электронной почты" +msgstr "Уведомление по электронной почте" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "Счётчик e-mail уведомлений" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "Профиль электронной почты" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "Адрес получателя электронной почты" +msgstr "Адрес получателя" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "Почтовый адрес отправителя" +msgstr "Адрес отправителя" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 -#, fuzzy +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "Тема" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 msgid "Edit Blacklist" -msgstr "Редактировать Черный список" +msgstr "Редактировать чёрный список" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:10 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43 msgid "Edit Whitelist" -msgstr "Редактировать Белый список" +msgstr "Редактировать белый список" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "Включить Безопасный Поиск" +msgstr "Включить Безопасный поиск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "Включите умеренные фильтры Безопастного Поиска для youtube." +msgstr "Включить более умеренные фильтры Безопасного поиска для УouTube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "Включить сервис AdBlock." +msgstr "Включить службу Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" -"Включите подробное ведение журнала отладки в случае каких-либо ошибок " -"обработки." +msgstr "Включить подробное формирование отчёта на случай возникновения ошибок." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Включено" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Дата окончания" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Время окончания" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." msgstr "" -"Принудительный Безопасный Поиск в google, bing, duckduckgo, yandex, youtube " -"и pixabay." +"Принудительное использование Безопасного поиска для Google, Bing, " +"DuckDuckGo, Yandex, YouTube и Pixabay." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "Существующая работа(ы)" +msgstr "Существующие задания" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "Внешний домен DNS Lookup" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -"Внешний домен для проверки успешной перезагрузки DNS-сервера. Обратите " -"внимание: чтобы отключить эту проверку, установите для этой опции значение " -"«false»." +"Внешний домен для проверки успешной перезагрузки DNS-сервера. <br /> " +"<i>Обратите внимание: чтобы отключить эту проверку, установите для этой " +"опции значение «false».</i>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "Критерии фильтрации, такие как дата, домен или клиент (необязательно)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "Порты файерволла, перенаправляемые локально." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#, fuzzy +msgid "Firewall source zones that should be forced locally." +msgstr "Зоны файерволла, перенаправляемые локально." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Очистка кэша DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." -msgstr "Очистите кэш DNS до обработки adblock." +msgstr "Дополнительная очистка кэша DNS до его обработки Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 +#, fuzzy msgid "Force Local DNS" -msgstr "Локальный DNS" +msgstr "Принудительный локальный DNS" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +#, fuzzy +msgid "Forced Ports" +msgstr "Перенаправляемые порты" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#, fuzzy +msgid "Forced Zones" +msgstr "Перенаправляемые зоны" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" +"Сбор информации о трафике DNS через tcpdump и создание отчётов DNS. <br /> " +"<i>Обратите внимание: для работы этой функции необходим пакет 'tcpdump-mini' " +"и полная перезагрузка службы Adblock.</i>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "Основные настройки" +msgstr "Общие настройки" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "Предоставить доступ к приложению LuCI AdBlock" +msgstr "Предоставить доступ к приложению Adblock для LuCI" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Информация" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "Директория Jail" +msgstr "Папка для «тюрьмы»" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Последний запуск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "Последние DNS запросы" +msgstr "Последние DNS-запросы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "Ограничить Безопасный поиск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" +"Ограничить использование Безопасного поиска определёнными поисковыми " +"службами." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "Номер строки для удаления" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." -msgstr "Список доступных сетевых устройств используемых tcpdump." +msgstr "Список доступных сетевых устройств, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" +"Список сетевых интерфейсов для запуска Adblock в случае их доступности. " +"Выберите «не определено» для стандартного запуска по тайм-ауту." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -"Список поддерживаемых бэкэндов DNS с их каталогом по умолчанию. Чтобы " +"Список поддерживаемых служб DNS с их каталогом по умолчанию. Чтобы " "перезаписать путь по умолчанию, используйте опцию «Каталог DNS»." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -"Список поддерживаемых и полностью предварительно настроенных утилит для " -"скачивания." - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "Локальные порты DNS" +"Список поддерживаемых предварительно настроенных утилит для загрузки списков." #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "Просмотр журнала" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Низкий приоритет службы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "Имя / IP-адрес" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Нет результатов запроса!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" -msgstr "Ещё нет журналов, связанных с adblock!" +msgstr "Ещё нет журналов, связанных с Adblock!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" msgstr "Обзор" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." -msgstr "" +msgstr "Профиль, используемый 'msmtp' для отправки почтовых уведомлений." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Запрос" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82 msgid "Query active blocklists and backups for a specific domain." msgstr "" -"Запросить активные списки блоков и резервные копии для определенного домена." +"Поиск определенного домена в активных списках блокировок и резервных копиях." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 +#, fuzzy msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" +"Увеличение количества уведомлений для отправки письма в случае, если " +"количество блокировок не превышает указанного числа." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "Адрес получателя для уведомлений по электронной почте." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" +"Перенаправление всех DNS-запросов из указанных зон к локальной службе DNS " +"Lookup. Применяется к протоколам TCP и UDP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" +"Уменьшить приоритет фоновой обработки Adblock для уменьшения нагрузки на " +"систему. <br /> <i>Обратите внимание: для работы данной опции требуется " +"полная перезагрузка службы Adblock.</i>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Обновить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" -msgstr "Обновление отчета DNS" +msgstr "Обновить отчёт DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" msgstr "Обновить таймер" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "Обновить таймер..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Обновить..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" -msgstr "" +msgstr "Ослабить Безопасный поиск" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "Перезапустить" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "Удалить существующее задание" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" -msgstr "Количество фрагментов отчета" +msgstr "Количество фрагментов отчёта" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" -msgstr "Размер фрагментов отчета" +msgstr "Размер фрагментов отчёта" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" -msgstr "Папка для отчетов" +msgstr "Папка для отчётов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" -msgstr "Отчет интерфейса" +msgstr "Интерфейсы в отчёте" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" -msgstr "Порты отчетов" +msgstr "Порты в отчёте" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." -msgstr "" +msgstr "Количество фрагментов отчёта, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." -msgstr "" +msgstr "Размер фрагментов отчёта, используемых tcpdump, в мегабайтах." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "Перезапустить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "Результат" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" -msgstr "Директория запуска" +msgstr "Рабочие папки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 +#, fuzzy msgid "Run Flags" -msgstr "Флаги запуска" +msgstr "Рабочие флаги" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" -msgstr "Интерфейсы запуска" +msgstr "Рабочие интерфейсы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" -msgstr "Запуск Утилиты" +msgstr "Рабочие утилиты" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" +"Отправлять на e-mail уведомления, касающиеся Adblock. <br /> <i>Обратите " +"внимание: требуется установка дополнительного пакета \"msmtp\".</i>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." -msgstr "E-Mails адрес отправителя для уведомления adblock ." +msgstr "E-Mail адрес отправителя уведомлений Adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Настройки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" +"Размер очереди загрузки для параллельной обработки (сортировки, объединения " +"и т.п.)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 +#, fuzzy msgid "Sources (Size, Focus)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" +msgstr "Источники (Размер, Фокусировка)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." -msgstr "Разделенный пробелами список портов используемых tcpdump." +msgstr "Разделенный пробелами список портов, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "Специальные опции конфигурации для выбранной утилиты загрузки." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "Дата начала" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "Время начала" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Интерфейс для запуска" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "Статус / Версия" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Приостановить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Папка для созданного списка блокировки 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." -msgstr "" +msgstr "Папка для «тюремного» списка блокировки 'adb_list.jail'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "Не удалось обновить таймер обновления." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." -msgstr "Таймер обновления обновлен." +msgstr "Таймер обновления обновлён." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "День недели (выбор, значения: 1-7, возможен разделитель . , или -)" +msgstr "День недели (необязательно, значения: 1–7, запятые или дефисы)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 msgid "The hours portition (req., range: 0-23)" -msgstr "Распределение часов (требование, диапазон: 0-23)" +msgstr "Распределение часов (обязательно, значения: 0–23)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "Распределение минут (обязательно, значения: 0–59)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28 msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "" -"Вывод системного журнала, предварительно отфильтрованный только для " -"сообщений, связанных с adblock." +"Вывод системного журнала, предварительно отфильтрованного только для показа " +"сообщений, связанных с Adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:23 msgid "" @@ -701,6 +714,10 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"Это локальный чёрный список блокировки, указанные в котором (суб-)домены " +"всегда блокируются. <br /> <i>Обратите внимание: добавляйте по одному домену " +"на строку. Разрешается использование комментариев, начинающихся на '#' — IP-" +"адреса и регулярные выражения не поддерживаются</i>" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23 msgid "" @@ -708,45 +725,58 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"Это локальный белый список блокировки, указанные в котором (суб-)домены " +"всегда пропускаются. <br /> <i>Обратите внимание: добавляйте по одному " +"домену на строку. Разрешается использование комментариев, начинающихся на " +"'#' — IP-адреса и регулярные выражения не поддерживаются.</i>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Время" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." -msgstr "Тайм-аут ожидания успешного перезапуска серверной части DNS." +msgstr "Тайм-аут ожидания успешного перезапуска службы DNS." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16 msgid "" "To keep your adblock lists up-to-date, you should setup an automatic update " "job for these lists." -msgstr "" +msgstr "Чтобы списки были актуальны, настройте их автоматическое обновление." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "Топ-10 статистики" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." -msgstr "" +msgstr "Тема, используемая для отправки электронных писем." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "Всего DNS-запросов" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Задержка запуска" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "Невозможно сохранить изменения: %ы" +msgstr "Невозможно сохранить изменения: %s" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "Подробный журнал отладки" @@ -756,38 +786,124 @@ msgid "" "Whitelist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" -"Изменения в белом списке были сохранены. Обновите свои списки рекламных " -"блоков, чтобы изменения вступили в силу." +"Изменения в белом списке были сохранены. Обновите свои списки блокировок, " +"чтобы изменения вступили в силу." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Белый список..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" -msgstr "" +msgstr "макс. размер списка результатов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" #~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "Для вступления в силу изменений на этой вкладке требуется полный " +#~ "перезапуск службы Adblock.<br /> <p>   </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "Сброс файла DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Список поддерживаемых предварительно настроенных источников списков " +#~ "блокировок, уже активные источники отмечены.<br /> <b><em>Во избежание " +#~ "ошибок нехватки памяти не выбирайте слишком много списков!</em></b><br /" +#~ ">Информация о размере списков:<br /> • <b>S</b> (<10k), <b>M</" +#~ "b> (10k-30k) и <b>L</b> (30k-80k) должны работать на устройствах с 128 " +#~ "МБайт ОЗУ,<br /> • <b>XL</b> (80k-200k) должны работать на " +#~ "устройствах с 256–512 МБайт ОЗУ,<br /> • <b>XXL</b> (200k<) " +#~ "требуют больше ОЗУ и многоядерный процессор, (например, на основе " +#~ "raspberry или x86).<br /> <p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Сброс последнего списка блокировок DNS 'adb_list.overall' после загрузки " +#~ "службы DNS. <br /> <i>Обратите внимание: эта опция запускает в фоне " +#~ "небольшой монитор ubus/adblock.</i>" + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "Создать новое/заменить задание Adblock" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Каталог для отчетов, связанных с DNS. По умолчанию — '/tmp', " +#~ "предпочтительно использовать USB-накопитель или другой локальный диск." + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "Каталог для резервных копий списков блокировок. По умолчанию — '/tmp', " +#~ "предпочтительно использовать USB-накопитель или другой локальный диск." + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "" +#~ "Отображение последнего отчёта DNS, нажмите кнопку «Обновить» для создания " +#~ "нового." + +#~ msgid "Local DNS Ports" +#~ msgstr "Локальные порты DNS" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "Перенаправить все DNS запросы из 'lan' зоны на локальный DNS резолвер. " +#~ "Применимо к UDP и TCP протоколам." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "DNS запросы (заблокированы)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "DNS запросов (всего)" + +#~ msgid "End Date" +#~ msgstr "Дата окончания" + +#~ msgid "Start Date" +#~ msgstr "Дата начала" + +#~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" #~ msgstr "" diff --git a/applications/luci-app-adblock/po/si/adblock.po b/applications/luci-app-adblock/po/si/adblock.po new file mode 100644 index 0000000000..338dabd4c6 --- /dev/null +++ b/applications/luci-app-adblock/po/si/adblock.po @@ -0,0 +1,749 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-01 07:55+0000\n" +"Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n" +"Language-Team: Sinhala <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock/si/>\n" +"Language: si\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.5\n" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- නිශ්චිතව දක්වා නැත -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +msgid "Active Sources" +msgstr "" + +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 +#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 +msgid "Adblock" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +msgid "Adblock action" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 +msgid "Add Blacklist Domain" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 +msgid "Add Whitelist Domain" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 +msgid "Add this (sub-)domain to your local blacklist." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47 +msgid "Add this (sub-)domain to your local whitelist." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +msgid "Additional Jail Blocklist" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +msgid "Additional Settings" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +msgid "Additional trigger delay in seconds before adblock processing begins." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +msgid "Advanced DNS Settings" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +msgid "Advanced E-Mail Settings" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +msgid "Advanced Report Settings" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +msgid "Answer" +msgstr "පිළිතුර" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Backup Directory" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +msgid "Base Temp Directory" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +msgid "" +"Base Temp Directory for all adblock related runtime operations, e.g. " +"downloading, sorting, merging etc." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 +msgid "" +"Blacklist changes have been saved. Refresh your adblock lists that changes " +"take effect." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 +msgid "Blacklist..." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 +msgid "Blocked Domain" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +msgid "Blocklist Backup" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 +msgid "Blocklist Query" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 +msgid "Blocklist Query..." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +msgid "Blocklist Sources" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +msgid "" +"Builds an additional DNS blocklist to block access to all domains except " +"those listed in the whitelist. Please note: You can use this restrictive " +"blocklist e.g. for guest wifi or kidsafe configurations." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +msgid "Client" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +msgid "" +"Configuration of the adblock package to block ad/abuse domains by using DNS. " +"For further information <a href=\"https://github.com/openwrt/packages/blob/" +"master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " +"noopener\" >check the online documentation</a>" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +msgid "Count" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +msgid "" +"Create compressed blocklist backups, they will be used in case of download " +"errors or during startup." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +msgid "DNS Backend" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 +msgid "DNS Directory" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 +#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 +msgid "DNS Report" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +msgid "DNS Restart Timeout" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +msgid "Date" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +msgid "Disable DNS Allow" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 +msgid "Disable DNS Restarts" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 +msgid "" +"Disable adblock triggered restarts for dns backends with autoload/inotify " +"functions." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +msgid "Disable selective DNS whitelisting (RPZ pass through)." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +msgid "Domain" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +msgid "Download Parameters" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +msgid "Download Queue" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 +msgid "Download Utility" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 +msgid "E-Mail Notification" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 +msgid "E-Mail Notification Count" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 +#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 +msgid "Edit Blacklist" +msgstr "" + +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:10 +#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43 +msgid "Edit Whitelist" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 +msgid "Enable SafeSearch" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 +msgid "Enable moderate SafeSearch filters for youtube." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 +msgid "Enable the adblock service." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 +msgid "" +"Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " +"pixabay." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 +msgid "Existing job(s)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 +msgid "External DNS Lookup Domain" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 +msgid "" +"External domain to check for a successful DNS backend restart. Please note: " +"To disable this check set this option to 'false'." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 +msgid "Filter criteria like date, domain or client (optional)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 +msgid "Flush DNS Cache" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 +msgid "Flush the DNS Cache before adblock processing as well." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 +msgid "Force Local DNS" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 +msgid "" +"Gather DNS related network traffic via tcpdump and provide a DNS Report on " +"demand. Please note: this needs additional 'tcpdump-mini' package " +"installation and a full adblock service restart to take effect." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 +msgid "Grant access to LuCI app adblock" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 +msgid "Information" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Jail Directory" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 +msgid "Last Run" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 +msgid "Latest DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +msgid "Limit SafeSearch" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +msgid "Limit SafeSearch to certain providers." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +msgid "List of available network devices used by tcpdump." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +msgid "" +"List of available network interfaces to trigger the adblock start. Choose " +"'unspecified' to use a classic startup timeout instead of a network trigger." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +msgid "" +"List of supported DNS backends with their default list directory. To " +"overwrite the default path use the 'DNS Directory' option." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 +msgid "List of supported and fully pre-configured download utilities." +msgstr "" + +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 +#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 +msgid "Log View" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +msgid "Low Priority Service" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Name / IP Address" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 +msgid "No Query results!" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 +msgid "No adblock related logs yet!" +msgstr "" + +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 +#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 +msgid "Overview" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 +msgid "Profile used by 'msmtp' for adblock notification E-Mails." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 +msgid "Query" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82 +msgid "Query active blocklists and backups for a specific domain." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 +msgid "" +"Raise the notification count, to get E-Mails if the overall blocklist count " +"is less or equal to the given limit." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +msgid "Receiver address for adblock notification e-mails." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 +msgid "" +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +msgid "" +"Reduce the priority of the adblock background processing to take fewer " +"resources from the system. Please note: This change requires a full adblock " +"service restart to take effect." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 +msgid "Refresh" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 +msgid "Refresh DNS Report" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 +msgid "Refresh Timer" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 +msgid "Refresh Timer..." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +msgid "Refresh..." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 +msgid "Relax SafeSearch" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +msgid "Report Chunk Count" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +msgid "Report Chunk Size" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Report Directory" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +msgid "Report Interface" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +msgid "Report Ports" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +msgid "Report chunk count used by tcpdump." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +msgid "Report chunk size used by tcpdump in MByte." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 +msgid "Result" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 +msgid "Run Directories" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 +msgid "Run Flags" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 +msgid "Run Interfaces" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 +msgid "Run Utils" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 +msgid "Save" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 +msgid "" +"Send adblock related notification e-mails. Please note: this needs " +"additional 'msmtp' package installation." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 +msgid "Sender address for adblock notification E-Mails." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 +msgid "Set a new adblock job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +msgid "Settings" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +msgid "" +"Size of the download queue for download processing (incl. sorting, merging " +"etc.) in parallel." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 +msgid "Sources (Size, Focus)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +msgid "Space separated list of ports used by tcpdump." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +msgid "Special config options for the selected download utility." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +msgid "Startup Trigger Interface" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 +msgid "Status / Version" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +msgid "Suspend" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 +msgid "Target directory for the generated blocklist 'adb_list.overall'." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Target directory for the generated jail blocklist 'adb_list.jail'." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 +msgid "The Refresh Timer could not been updated." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 +msgid "The Refresh Timer has been updated." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 +msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 +msgid "The hours portition (req., range: 0-23)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 +msgid "The minutes portion (opt., range: 0-59)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28 +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:23 +msgid "" +"This is the local adblock blacklist to always-deny certain (sub) domains." +"<br /> Please note: add only one domain per line. Comments introduced with " +"'#' are allowed - ip addresses, wildcards and regex are not." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23 +msgid "" +"This is the local adblock whitelist to always allow certain (sub) domains." +"<br /> Please note: add only one domain per line. Comments introduced with " +"'#' are allowed - ip addresses, wildcards and regex are not." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 +msgid "" +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +msgid "Time" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +msgid "Timeout to wait for a successful DNS backend restart." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16 +msgid "" +"To keep your adblock lists up-to-date, you should setup an automatic update " +"job for these lists." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 +msgid "Top 10 Statistics" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 +msgid "Topic for adblock notification E-Mails." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +msgid "Trigger Delay" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 +msgid "Unable to save changes: %s" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:69 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:15 +msgid "" +"Whitelist changes have been saved. Refresh your adblock lists that changes " +"take effect." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 +msgid "Whitelist..." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 +msgid "dnsmasq (/tmp/dnsmasq.d)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +msgid "kresd (/etc/kresd)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 +msgid "max. result set size" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 +msgid "named (/var/lib/bind)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +msgid "raw (/tmp)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 +msgid "unbound (/var/lib/unbound)" +msgstr "" diff --git a/applications/luci-app-adblock/po/sk/adblock.po b/applications/luci-app-adblock/po/sk/adblock.po index 2172481830..1fba3176ec 100644 --- a/applications/luci-app-adblock/po/sk/adblock.po +++ b/applications/luci-app-adblock/po/sk/adblock.po @@ -10,11 +10,16 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akcia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -43,46 +48,46 @@ msgstr "Pridať túto (sub-) doménu medzi lokálne zakázané domény." msgid "Add this (sub-)domain to your local whitelist." msgstr "Pridať túto (sub-) doménu medzi lokálne povolené domény." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "Ďalšie nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatočné oneskorenie v sekundách pred začiatkom spracovania blokovania " "reklamy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Pokročilé DNS nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "Pokročilé nastavenia e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 #, fuzzy msgid "Advanced Report Settings" msgstr "Pokročilé nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpoveď" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Záložný priečinok" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Základný Temp priečinok" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -97,19 +102,23 @@ msgstr "" "Zmeny v zozname zakázaných domén boli uložené. Obnovte zoznamy Adblocku aby " "sa prejavili." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Zoznam zakázaných domén..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Blokovaná doména" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Záloha zoznamu blokovaných domén" @@ -117,15 +126,15 @@ msgstr "Záloha zoznamu blokovaných domén" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Zdroje zoznamov blokovaní" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -134,23 +143,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Zrušiť" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -158,109 +166,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Počet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS adresár" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Inicializácia DNS súboru" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Dátum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Doména" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Nástroj na sťahovanie" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "Upozornenie e-mailom" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "Adresa príjemcu e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -274,31 +270,31 @@ msgstr "Upraviť čiernu listinu" msgid "Edit Whitelist" msgstr "Upraviť bielu listinu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Povolené" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Koncový dátum" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -308,40 +304,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Vyprázdniť medzipamäť DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "Všeobecné nastavenia" @@ -349,80 +361,68 @@ msgstr "Všeobecné nastavenia" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Informácie" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -435,11 +435,11 @@ msgstr "" msgid "Overview" msgstr "Prehľad" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -447,35 +447,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -483,162 +482,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Uložiť" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -672,17 +668,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -692,15 +688,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -709,7 +709,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -720,34 +725,40 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" +#~ msgid "DNS File Reset" +#~ msgstr "Inicializácia DNS súboru" + +#~ msgid "End Date" +#~ msgstr "Koncový dátum" + #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" diff --git a/applications/luci-app-adblock/po/sv/adblock.po b/applications/luci-app-adblock/po/sv/adblock.po index fa98046a7e..cf8d366152 100644 --- a/applications/luci-app-adblock/po/sv/adblock.po +++ b/applications/luci-app-adblock/po/sv/adblock.po @@ -1,22 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-11-06 23:06+0000\n" -"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n" +"PO-Revision-Date: 2021-03-19 04:16+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/sv/>\n" "Language: sv\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "- ospecificerad -" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Åtgärd" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "" +msgstr "Aktiva källor" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -25,67 +30,69 @@ msgstr "Adblock" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 msgid "Adblock action" -msgstr "" +msgstr "Reklamblockeringshandling" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "" +msgstr "Lägg till svartlistad domän" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" -msgstr "" +msgstr "Lägg till vitlistad domän" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." -msgstr "" +msgstr "Lägg till denna (under-)domän till din lokala svartlista." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47 msgid "Add this (sub-)domain to your local whitelist." -msgstr "" +msgstr "Lägg till denna (under-)domän i din lokala vitlista." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "" +msgstr "Ytterligare arrest-blocklista" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "" +msgstr "Fler inställningar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Ytterligare trigger fördröjning i sekunder innan Adblock-bearbetningen " "påbörjas." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" -msgstr "" +msgstr "Avancerade DNS-inställningar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Avancerade e-post-inställingar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" -msgstr "" +msgstr "Avancerade rapportinställningar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Svar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Säkerhetskopiera mapp" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "" +msgstr "Tempkatalogbas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." msgstr "" +"Tempbaskatalog för alla annonsblockeringsrelaterade driftoperationer. T.ex. " +"nedladdning, sortering, sammanslagning, etc." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 @@ -93,173 +100,177 @@ msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." msgstr "" +"Ändringar av startlistan har sparats. Uppdatera dina annonsblockeringslistor " +"för att ändringarna ska få verkan." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." -msgstr "" +msgstr "Svartlista..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Blockerade DNS-uppslag" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Blockerad domän" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "" +msgstr "Blockerade domäner" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" -msgstr "" +msgstr "Blockeringslistssäkerhetskopia" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" -msgstr "" +msgstr "Blockeringslistsfråga" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." -msgstr "" +msgstr "Blockeringslistsfråga..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Källor för blockeringslistor" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " "blocklist e.g. for guest wifi or kidsafe configurations." msgstr "" +"Bygger en ytterligare spärrlista för DNS som blockerar åtkomst till alla " +"domäner utom de vitlistade. Notera: Du kan använda denna begränsande " +"spärrlista för t.ex. gästnätverk eller barnsäkra uppsättningar." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" -msgstr "" +msgstr "Avbryt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Konfiguration av annonsblockeringspaketet för att spärra annons-/" +"missbruksdomäner via DNS. Se <a href=\"https://github.com/openwrt/packages/" +"blob/master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " +"noopener\" >online-dokumentationen</a> för mer information." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Räkna" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" +"Skapa komprimerade säkerhetskopior av spärrlistor för att användas vid " +"uppstart i händelse av nedladdningsfel." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" -msgstr "" +msgstr "DNS-bakände" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS-mapp" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS-filåterställning" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" +msgstr "DNS-rapport" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "" +msgstr "Tidsgräns för DNS-omstart" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Datum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "" +msgstr "Inaktivera DNS-tillåtelse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" -msgstr "" +msgstr "Inaktivera DNS-omstarter" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" +"Inaktivera annonsblockeringsstyrda omstarter av DNS-bakändar med autoload/" +"inotify funktionalitet." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "" +msgstr "Inaktivera selektiv DNS-vitlistning (RPZ-genomflöde)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Domän" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "" +msgstr "Ladda ner parametrar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "" +msgstr "Nedladdningskö" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "Ladda ner verktyget" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "E-postavisering" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "" +msgstr "Antal E-postaviseringar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "" +msgstr "E-postprofil" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "E-postmottagaradress" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Avsändaradress för e-post" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "" +msgstr "E-postämne" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 @@ -271,371 +282,391 @@ msgstr "Redigera svartlista" msgid "Edit Whitelist" msgstr "Redigera vitlista" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "" +msgstr "Aktivera SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "" +msgstr "Aktivera måttliga SafeSearch-filter för Youtube." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "" +msgstr "Aktivera annonsblockerinstjänsten." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "Aktivera utförlig avlusningsloggning i händelse av behandlingsfel." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Aktiverad" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "Slutdatum" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Sluttidstämpel" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." -msgstr "" +msgstr "Påtvingar SafeSearch på Google, Bing, DuckDuckGo, Yandex och Pixbay." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Befintliga jobb" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" -msgstr "" +msgstr "Extern DNS-uppslagsdomän" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" +"Extern domän för att verifiera en lyckad omstart av DNS-bakände. Notera: " +"Inaktivera denna verifiering genom att välja alternativet 'false'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" -msgstr "" +msgstr "Filtreringsvillkor som datum, domän eller klient (valfritt)" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "Brandväggsportar som ska forceras lokalt." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "Brandväggskällzoner som ska forceras lokalt." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "Töm DNS-cache" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." -msgstr "" +msgstr "Spola också DNS-cachen innan annonsblockeringshantering." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "Tvinga lokal DNS" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Forcerade portar" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Forcerade zoner" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" +"Samla in DNS-relaterad nätverkstrafik med tcpdump och tillhandahåll en DNS-" +"rapport på begäran. Notera: detta kräver ytterligare installation av " +"'tcpdump-mini'-paketet och en fullständig omstart av " +"annonsblockeringstjänsten för att få verkan." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "Generella inställningar" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "" +msgstr "Ge tillgång till LuCi-programmet annonsblockering" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" -msgstr "" +msgstr "Information" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "" +msgstr "Arrestkatalog" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "Kördes senast" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "" +msgstr "Senaste DNS-begäranden" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "Begränsa SafeSearch" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." +msgstr "Begränsa SafeSearch till vissa leverantörer." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." -msgstr "" +msgstr "Lista med tillgängliga nätverksenheter använda av tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" +"Lista tillgängliga nätverksgränssnitt för att påkalla uppstart av " +"annonsblockeringen. Välj 'unspecified' för att använda en klassisk " +"upstartstidsgräns istället för en nätverksaktivering." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" +"Lista med tillgängliga DNS-bakändar med deras standardlistskatalog. För att " +"åsidosätta standardsökvägen; använd alternativet 'DNS-katalog'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "Lista över stödda och helt förkonfigurerade nedladdningsverktyg." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "" +msgstr "Logutsikt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Lågprioriterad tjänst" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" -msgstr "" +msgstr "Namn / IP-adress" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "" +msgstr "Inga frågeresultat!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" -msgstr "" +msgstr "Inga annonsblockerinsrelaterade loggar ännu!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" -msgstr "Översikt" +msgstr "Överblick" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" +"Profil som används av 'msmtp' för annonsblockeringsaviserinse-" +"postmeddelanden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "Fråga" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82 msgid "Query active blocklists and backups for a specific domain." -msgstr "" +msgstr "Fråga aktiva svartlistor och säkerhetskopior efter en given domän." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" +"Öka aviseringsantalet för att få e-post om den sammantagna spärrlistans " +"antal är mindre än eller lika med den givna gränsen." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." -msgstr "" +msgstr "Mottagande adress för annonsblockeringsaviserings-e-postmeddelanden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" +"Omdirigera alla DNS-frågor från specifika zoner till den lokala DNS-" +"utredaren, gäller för UDP- och TCP-protokoll." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" +"Sänk prioriteten på annonsblockeringsbakgurndsbearbetning för att ta färre " +"systemresurser i anspråk. Notera: Denna ändring kräver en fullständig " +"omstart av annonsblockeringstjänsten för att ha verkan." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" -msgstr "" +msgstr "Uppdatera" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" -msgstr "" +msgstr "Förnya DNS-rapporten" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Förnya stoppuret" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." -msgstr "" +msgstr "Förnya stoppuret..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." -msgstr "" +msgstr "Fräscha upp..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" +msgstr "Slappna av SafeSearch" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 -msgid "Report Chunk Count" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +msgid "Report Chunk Count" +msgstr "Rapportera klimpantal" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" -msgstr "" +msgstr "Rapportera klimpstorlek" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" -msgstr "" +msgstr "Rapportkatalog" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" -msgstr "" +msgstr "Rapportgränssnitt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" -msgstr "" +msgstr "Rapporthamnar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." -msgstr "" +msgstr "Rapportera klimpantal använt av tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." -msgstr "" +msgstr "Rapportera klimpstorlek som används av tcpdump i MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" -msgstr "" +msgstr "Resultat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" -msgstr "" +msgstr "Körkataloger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" -msgstr "" +msgstr "Förflaggor" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" -msgstr "" +msgstr "Körgränssnitt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" -msgstr "" +msgstr "Kör verktyg" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Spara" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" -msgstr "" +msgstr "Inställningar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "" +msgstr "Status / Version" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "Stäng av" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -669,17 +700,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -689,15 +720,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -706,7 +741,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -717,35 +757,78 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" #~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "Ändringar i denna flik kräver en fullständig omstart av " +#~ "annonsblockerinstjänsten för att få verkan.<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS-filåterställning" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Lista med stödja och fullt förkonfigurerade annonsblockeringskällor. " +#~ "Redan aktiva källor är förvalda.<br /> <b><em>För att undvika slut-på-" +#~ "minnesfel, välj inte för många listor!</em></b><br /> " +#~ "Liststorleksinformation med respektive domänomfång är som följer:<br /> " +#~ "• <b>S</b> (-10k), <b>M</b> (10k-30k) och <b>L</b> (30k-80k) " +#~ "bör fungera på 128 MByte enheter,<br /> • <b>XL</b> (80k-200k) " +#~ "bör fungera på 256-512 MByte enheter,<br /> • <b>XXL</b> " +#~ "(200k-) berhöver mer RAM och flerkärnsstöd, t.ex. x86- eller raspberry-" +#~ "enheter.<br /> <p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "Nollställer den slutgiltiga DNS-spärrlistan 'adb_list.overall' after DNS-" +#~ "bakändesladdning. Notera: detta alternativ startar en liten ubus/adblock " +#~ "övervakare i bakgrunden." + +#~ msgid "End Date" +#~ msgstr "Slutdatum" + +#~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" #~ msgstr "" diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index e470942fda..97207592ed 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -1,11 +1,16 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -34,43 +39,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -83,19 +88,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -103,15 +112,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -120,23 +129,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -144,109 +152,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -260,31 +256,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -294,40 +290,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -335,80 +347,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -421,11 +421,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -433,35 +433,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -469,162 +468,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -658,17 +654,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -678,15 +674,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -695,7 +695,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -706,30 +711,30 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/tr/adblock.po b/applications/luci-app-adblock/po/tr/adblock.po index 89e344a41c..7ffa5057a2 100644 --- a/applications/luci-app-adblock/po/tr/adblock.po +++ b/applications/luci-app-adblock/po/tr/adblock.po @@ -1,20 +1,25 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-22 02:42+0000\n" -"Last-Translator: tentena <thetentena@gmail.com>\n" +"PO-Revision-Date: 2021-01-30 09:06+0000\n" +"Last-Translator: Mete <selimmeteozdogan@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/tr/>\n" "Language: tr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Eylem" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Aktif Kaynaklar" @@ -29,11 +34,11 @@ msgstr "Reklam engelleme eylemi" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "Kara Listeye Ekle" +msgstr "Alan Adını Kara Listeye Ekle" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" -msgstr "İzin verilen listesine Alan Adı ekle" +msgstr "Beyaz listeye ekle" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." @@ -43,51 +48,50 @@ msgstr "Bu (alt-)alan adını yerel kara listenize ekleyin." msgid "Add this (sub-)domain to your local whitelist." msgstr "Bu (alt)alan adını yerel izin verilen listenize ekleyin." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "Ek Engelleme listesi" +msgstr "Ek \"Hapis\" Engelleme listesi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "Diğer Ayarlar" +msgstr "Ek Ayarlar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -"Reklam engelleme işlemi başlamadan önce saniye cinsinden ek tetikleme " -"gecikmesi." +"Reklam engelleme işlemi başlamadan önce saniye cinsinden gecikme süresi." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "Gelişmiş DNS Ayarları" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "Gelişmiş E-Posta Ayarları" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "Gelişmiş Rapor Ayarları" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Cevap" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" -msgstr "Yedek Dizini" +msgstr "Yedekleme Dizini" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "Geçici dosyalar icin temel Dizini" +msgstr "Geçici dosyalar icin temel Dizin" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." msgstr "" -"Reklam engelleyici ile ilişkili tüm gerçek zamanlı operasyonlar için Temel " -"Geçici Dizin, ör. indirme, sıralama, birleştirme vb." +"Reklam engelleyici ile ilişkili tüm gerçek zamanlı işlemler için Temel " +"Geçici Dizin, örn. indirme, sıralama, birleştirme vb." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 @@ -98,19 +102,23 @@ msgstr "" "Kara liste değişiklikleri kaydedildi. Değişikliklerin etkili olması için " "reklam engelleme listelerinizi yenileyin." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Kara liste..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "Engellenen DNS İstekleri" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Engellenmiş Alan Adı" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "Engellenen Alan Adları" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Engelleme Listesi Yedekleme" @@ -118,46 +126,43 @@ msgstr "Engelleme Listesi Yedekleme" msgid "Blocklist Query" msgstr "Engelleme Listesi Sorgusu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "Engelleme Listesi Sorgusu..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Engelleme Listesi Kaynakları" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " "blocklist e.g. for guest wifi or kidsafe configurations." msgstr "" -"İzin verilen alan adları listesinde listelenenler dışındaki tüm alan " -"adlarına erişimi engellemek için ek bir DNS engelleme listesi oluşturur. " -"Lütfen dikkat: Bu kısıtlayıcı engelleme listesini misafir veya cocuk wifi " -"yapılandırmaları için kullanabilirsiniz." +"İzin verilen alan adları listesindekiler dışındaki tüm alan adlarına erişimi " +"engellemek için ek bir DNS engelleme listesi oluşturur. Not: Bu kısıtlayıcı " +"engelleme listesini misafir veya çocuk wifi yapılandırmaları için " +"kullanabilirsiniz." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "İptal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -"Bu sekmedeki değişikliklerin yürürlüğe girmesi için reklam engelleme " -"hizmetinin yeniden başlatılması gerekir..<br />2<p>3 4</p>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "İstemci" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -168,292 +173,297 @@ msgstr "" "alanlarını engelleyecek şekilde yapılandırılması. Daha fazla bilgi için <a " "href=\"https://github.com/openwrt/packages/blob/master/net/adblock/files/" "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" > çevrimiçi " -"belgelere </a> bakın" +"belgelere </a> bakın." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Adet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -"Sıkıştırılmış blok listesi yedekleri oluşturun, indirme hataları veya " +"Sıkıştırılmış kara liste yedekleri oluşturun, bunlar indirme hataları ve " "başlatma sırasında kullanılacaktır." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "DNS Arka Uç" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS Dizini" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS Dosya Sıfırlama" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "DNS Raporu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "" +msgstr "DNS Yeniden Başlatma Zaman Aşımı" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" -msgstr "" +msgstr "Tarih" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "" +msgstr "DNS İzin Vermeyi Devre Dışı bırakın" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" -msgstr "" +msgstr "DNS Yeniden Başlatmalarını Devre Dışı bırakın" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" +"Adblock tarafından tetiklenen autoload/inotify fonksiyonları ile dns arka uç " +"yeniden başlatmasını devre dışı bırakın." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "" +msgstr "Seçilebilir DNS beyaz listesini (RPZ geçişi) devre dışı bırakın." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" -msgstr "" +msgstr "Alan" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" -msgstr "" +msgstr "İndirme Parametreleri" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" -msgstr "" +msgstr "İndirme Kuyruğu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" -msgstr "" +msgstr "İndirme Aracı" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "" +msgstr "E-Mail Bildirimi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "" +msgstr "E-Mail Bildirim Sayısı" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "" +msgstr "E-Mail Profili" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "E-Mail Alıcı Adresi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "" +msgstr "E-Mail Gönderen Adresi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "" +msgstr "E-Mail Konusu" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 msgid "Edit Blacklist" -msgstr "" +msgstr "Karalisteyi Düzenle" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:10 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43 msgid "Edit Whitelist" -msgstr "" +msgstr "Beyazlisteyi Düzenle" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" -msgstr "" +msgstr "GüvenliArama'yı Etkinleştir" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "" +msgstr "Youtube için hafif GüvenliArama'yı etkinleştir." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "" +msgstr "Adblock servisini etkinleştir." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Herhangi bir işleme hatası durumunda ayrıntılı hata ayıklama günlüğünü " +"etkinleştir." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" -msgstr "" +msgstr "Etkin" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "Zaman damgasını bitir" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." msgstr "" +"Google, bing, duckduckgo, yandex, youtube ve pixabay için GüvenliArama " +"uygulanıyor." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Mevcut iş(ler)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" -msgstr "" +msgstr "Harici DNS Arama Alanı" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" +"DNS arkaucunun başarılı şekilde yeniden başlatıldığını kontrol eden harici " +"alan. Lütfen dikkat: Bu kontrolü devre dışı bırakmak için 'false' olarak " +"ayarlayın." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" +msgstr "Tarih, alan, client gibi filtre özellikleri (opsiyonel)" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 -msgid "Flush DNS Cache" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 +msgid "Flush DNS Cache" +msgstr "DNS Önbelleğini Temizle" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." -msgstr "" +msgstr "Adblock işleminden önce de DNS Önbelleğini temizle." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" -msgstr "" +msgstr "Yerel DNS zorla" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "Zorlanan Erişim Noktaları" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "Zorlanan Bölgeler" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" +"DNS ile ilgili ağ trafiğini tcpdump aracılığıyla toplayın ve talep üzerine " +"bir DNS Raporu oluşturun. Lütfen dikkat: etkili olması için ek olarak " +"'tcpdump-mini' paket kurulumuna ve adblock hizmetinin tamamen yeniden " +"başlatılması gerekir." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "" +msgstr "Genel Ayarlar" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "" +msgstr "LuCI uygulaması adblock'a izin verin" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" -msgstr "" +msgstr "Bilgi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "" +msgstr "Kafes Dizini" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" -msgstr "" +msgstr "Son çalışma zamanı" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "" +msgstr "Yeni DNS Sorguları" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "GüvenliArama'yı limitle" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." +msgstr "Belirli sağlayıcılar için GüvenliArama'yı limitle." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" -msgstr "" +msgstr "Kayıtları göster" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" -msgstr "" +msgstr "Düşük Öncelikli Servis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" -msgstr "" +msgstr "İsim / IP Adresi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "" +msgstr "Sorgu sonuçları yok!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" -msgstr "" +msgstr "Henüz adblock ile ilgili kayıt yok!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" msgstr "Genel bakış" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -461,198 +471,194 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" -msgstr "" +msgstr "Yenile" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" -msgstr "" +msgstr "DNS Raporunu Yenile" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Kaydet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "Ayarlar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -686,17 +692,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -706,15 +712,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -723,7 +733,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -734,35 +749,51 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" #~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "Bu sekmedeki değişikliklerin yürürlüğe girmesi için reklam engelleme " +#~ "hizmetinin yeniden başlatılması gerekir.<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS Dosya Sıfırlama" + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "DNS İstekleri (engellenmiş)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "DNS İstekleri (toplam)" + +#~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" #~ msgstr "" diff --git a/applications/luci-app-adblock/po/uk/adblock.po b/applications/luci-app-adblock/po/uk/adblock.po index 614bde1a86..b853fc5cb8 100644 --- a/applications/luci-app-adblock/po/uk/adblock.po +++ b/applications/luci-app-adblock/po/uk/adblock.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-10 12:32+0000\n" -"Last-Translator: Nazim-ua <nazim-ua@ukr.net>\n" +"PO-Revision-Date: 2020-10-27 21:26+0000\n" +"Last-Translator: Yevhen Chebotarev <gekinadres@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/uk/>\n" "Language: uk\n" @@ -9,13 +9,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Дія" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "Активні джерела" @@ -44,43 +49,43 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -93,19 +98,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -113,15 +122,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -130,23 +139,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "Скасувати" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Клієнт" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -154,109 +162,97 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Дата" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "Домен" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -270,31 +266,31 @@ msgstr "Редагувати чорний список" msgid "Edit Whitelist" msgstr "Редагувати білий список" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "Увімкнено" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -304,121 +300,125 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" -msgstr "Загальні параметри" +msgstr "Головні налаштування" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "Інформація" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -431,11 +431,11 @@ msgstr "" msgid "Overview" msgstr "Огляд" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -443,35 +443,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "Оновити" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -479,162 +478,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "Зберегти" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -668,17 +664,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -688,15 +684,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -705,7 +705,12 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "" @@ -716,31 +721,31 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/vi/adblock.po b/applications/luci-app-adblock/po/vi/adblock.po index 1b27f3bafb..ab5ec554e3 100644 --- a/applications/luci-app-adblock/po/vi/adblock.po +++ b/applications/luci-app-adblock/po/vi/adblock.po @@ -1,20 +1,25 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-11-20 17:08+0000\n" -"Last-Translator: Le Van Uoc <kunkun3012@gmail.com>\n" +"PO-Revision-Date: 2020-11-21 12:21+0000\n" +"Last-Translator: Darias <DariasLuc@gmail.com>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/vi/>\n" "Language: vi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Hành động" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" msgstr "" @@ -43,44 +48,44 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Kích hoạt độ trễ trong vài giây trước khi bắt đầu tiến trình chặn quảng cáo." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Phản hồi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Thư mục sao lưu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -93,19 +98,23 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "Tên miền bị chặn" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -113,15 +122,15 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "Bộ lọc" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -130,23 +139,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" msgstr "Khách hàng" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -154,110 +162,98 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "Bộ đếm" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 #, fuzzy msgid "DNS Directory" msgstr "Thư mục DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "Đặt lại tệp DNS" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "Ngày" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "" @@ -271,31 +267,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" -msgstr "" +msgstr "Bật" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -305,40 +301,56 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "" @@ -346,80 +358,68 @@ msgstr "" msgid "Grant access to LuCI app adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "" - #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "" @@ -432,11 +432,11 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "" @@ -444,35 +444,34 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "" @@ -480,162 +479,159 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" +msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "" @@ -669,17 +665,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Thời gian" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -689,15 +685,19 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" @@ -706,7 +706,12 @@ msgstr "Kích hoạt độ trễ" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 #, fuzzy msgid "Verbose Debug Logging" msgstr "Nhật ký gỡ lỗi khởi động" @@ -718,34 +723,37 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" msgstr "" +#~ msgid "DNS File Reset" +#~ msgstr "Đặt lại tệp DNS" + #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "than 64 MB free RAM, please only select a few of them!" diff --git a/applications/luci-app-adblock/po/zh_Hans/adblock.po b/applications/luci-app-adblock/po/zh_Hans/adblock.po index ab83f10cab..73f53cf6aa 100644 --- a/applications/luci-app-adblock/po/zh_Hans/adblock.po +++ b/applications/luci-app-adblock/po/zh_Hans/adblock.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-07-04 17:41+0000\n" -"Last-Translator: ehye <yjw9610@hotmail.com>\n" +"PO-Revision-Date: 2021-03-14 05:16+0000\n" +"Last-Translator: Eric <spice2wolf@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsadblock/zh_Hans/>\n" "Language: zh_Hans\n" @@ -15,15 +15,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "未指定" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" -msgstr "动作" +msgstr "开始" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "活跃源码" +msgstr "活动源" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -32,15 +37,15 @@ msgstr "广告拦截" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 msgid "Adblock action" -msgstr "广告屏蔽行动" +msgstr "拦截动作" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "添加域名到黑名单" +msgstr "添加黑名单域名" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" -msgstr "添加域名到白名单" +msgstr "添加白名单域名" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." @@ -50,43 +55,43 @@ msgstr "添加此域名到本地黑名单。" msgid "Add this (sub-)domain to your local whitelist." msgstr "添加此域名到本地白名单。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" msgstr "其它被屏蔽列表" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" -msgstr "其它设置" +msgstr "其他设置" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "事件触发启动前的延时(秒)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "高级DNS设置" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "高级E-Mail设置" +msgstr "高级设置-邮箱" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "高级报告设置" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "回答" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" -msgstr "备份目录" +msgstr "备份文件夹" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "基础临时目录" +msgstr "基本缓存文件夹" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -99,19 +104,23 @@ msgid "" "take effect." msgstr "黑名单更改已保存。刷新您的广告阻止列表,以使更改生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." -msgstr "黑名单列表" +msgstr "黑名单..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "阻止的DNS请求" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" msgstr "已拦截的域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "拦截域名" +msgstr "已拦截域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "黑名单列表的备份" @@ -119,15 +128,15 @@ msgstr "黑名单列表的备份" msgid "Blocklist Query" msgstr "拦截列表查询" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." msgstr "黑名单查询..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" -msgstr "拦截列表来源" +msgstr "阻止列表内容" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -138,23 +147,22 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "取消" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "改变此项后需要完全重启 adblock 以生效<br /><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "类别" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" -msgstr "客户端 Client" +msgstr "客户端" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -165,109 +173,97 @@ msgstr "" "github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" "\"_blank\" rel=\"noreferrer noopener\">查看在线文档</a>" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" msgstr "计数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "创建压缩的阻止列表备份,将在下载错误或启动期间使用它们。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "DNS后端" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS 目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS 文件重置" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "DNS报告" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "DNS请求(已阻止)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "DNS请求(总计)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" msgstr "DNS重新启动超时" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "日期" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "禁止 DNS 允许" +msgstr "禁用DNS允许" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "禁用DNS重新启动" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "禁用具有自动加载/ inotify功能的dns后端的adblock触发的重启。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "禁止选择性DNS白名单(RPZ通过)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "下载参数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "下载队列" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" msgstr "下载工具" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "E-Mail 通知" +msgstr "电子邮件通知" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" msgstr "电子邮件通知计数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "电子邮件资料" +msgstr "电子邮件概要" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "E-Mail 收件人地址" +msgstr "电子邮件收件人地址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" msgstr "电子邮件发件人地址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" msgstr "电子邮件主题" @@ -281,31 +277,31 @@ msgstr "编辑黑名单" msgid "Edit Whitelist" msgstr "编辑白名单" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "启用安全搜索" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." msgstr "为YouTube启用适度的安全搜索过滤器." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." msgstr "启用广告屏蔽服务." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "在出现任何处理错误的情况下启用详细调试日志记录." +msgstr "在任何处理错误的情况下启用详细调试日志记录." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" -msgstr "已启用" +msgstr "启用" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "结束日期" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "结束时间戳" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -313,13 +309,13 @@ msgstr "强制执行Google,Bing,Duckduckgo,Yandex,youtube和Google的Saf #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "现有的工作(s)" +msgstr "现有工作" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" msgstr "外部DNS查找域" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -327,23 +323,39 @@ msgstr "" "外部域,用于检查DNS后端是否成功重启。请注意:要禁用此检查,请将此选项设置为“ " "false”。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" msgstr "过滤条件,例如日期,域或客户(可选)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "本地应强制使用的防火墙端口。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "本地应强制使用的防火墙源域。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" msgstr "清空 DNS 缓存" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." msgstr "还要在处理adblock之前刷新DNS缓存。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "强制本地 DNS" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "强制端口" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "强制域" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " @@ -352,7 +364,7 @@ msgstr "" "通过tcpdump收集与DNS相关的网络流量,并按需提供DNS报告。请注意:这需要额外的“ " "tcpdump-mini”软件包安装,并重新启动完整的adblock服务才能生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "常规设置" @@ -360,35 +372,39 @@ msgstr "常规设置" msgid "Grant access to LuCI app adblock" msgstr "授予对LuCI应用程序adblock的访问权限" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "信息" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" msgstr "黑名单目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "最后运行" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" msgstr "最新的DNS请求" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "" +msgstr "限定安全搜索" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." -msgstr "" +msgstr "限定特定搜索引擎使用安全搜索。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "要移除的行号" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." msgstr "tcpdump使用的可用网络设备列表." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -396,56 +412,33 @@ msgstr "" "触发adblock启动的可用网络接口列表.选择“未指定”以使用传统的启动超时而不是网络" "触发器." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" "支持的DNS后端列表及其默认列表目录.要覆盖默认路径,请使用“ DNS目录”选项." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" -msgstr "" -"受支持且已完全预先配置的adblock源列表,已预先选择了已激活的源。<br /> <b> " -"<em>为避免OOM错误,请不要选择太多列表!</ em> </ b> <br />列出各个域范围的大" -"小信息,如下所示:<br />&#8226;&#xa0; <b> S </ b>(-10k),<b> M </ " -"b>(10k -30k)和<b> L </ b>(30k-80k)适用于128 MByte设备,<br />&#8226;&" -"#xa0; <b> XL </ b>(80k-200k)应适用适用于256-512 MB设备,<br />&#8226;&" -"#xa0; <b> XXL </ b>(200k-)需要更多的RAM和多核支持,例如x86或树莓派设备。" -"<br /> <p>&#xa0; </ p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "List of supported and fully pre-configured download utilities." -msgstr "支持和完全预配置的下载工具列表。" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "本地DNS端口" +msgstr "支持的和完全预先配置的下载实用程序列表." #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "日志视图" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "低优先级服务" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" msgstr "名称 / IP 地址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "没有查询结果!" +msgstr "没有查询结果!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" @@ -456,11 +449,11 @@ msgstr "尚无与adblock相关的日志!" msgid "Overview" msgstr "概览" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "'msmtp' 用于adblock通知电子邮件的配置文件。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "查询" @@ -468,25 +461,24 @@ msgstr "查询" msgid "Query active blocklists and backups for a specific domain." msgstr "查询特定域的活动阻止列表和备份." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" "如果总体阻止列表总数小于或等于给定的限制,请提高通知数量,以获取电子邮件." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." msgstr "adblock 通知 E-Mail 的收件人地址。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." -msgstr "" -"将所有 DNS 查询从“lan”区域重定向到本地解析器,包括 udp、tcp 协议的端口 ." +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." +msgstr "将所有DNS查询从指定区域重定向到本地DNS解析器,适用于UDP和TCP协议。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -495,189 +487,185 @@ msgstr "" "降低adblock后台处理的优先级以减少系统资源.请注意:此更改要求重新启动完整的" "adblock服务才能生效." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "刷新" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" -msgstr "刷新报告" +msgstr "刷新DNS报告" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15 msgid "Refresh Timer" -msgstr "刷新时间" +msgstr "定时恢复" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." -msgstr "" +msgstr "定时恢复中..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." -msgstr "" +msgstr "刷新..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" -msgstr "" +msgstr "放宽安全搜寻" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "重新加载" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "移除一个现有作业" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" msgstr "报告区块计数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "报告区块大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "报告目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "报告接口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" -msgstr "" +msgstr "报告端口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." -msgstr "" +msgstr "报告 tcpdump 所使用的区块数量。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." -msgstr "" +msgstr "报告 tcpdump 所使用的区块大小 (以 MByte 显示)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "重新启动" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" -msgstr "" +msgstr "结果" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" -msgstr "" +msgstr "运行目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" -msgstr "" +msgstr "运行标记" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" -msgstr "" +msgstr "运行接口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" -msgstr "" +msgstr "运行工具" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "保存" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." -msgstr "" +msgstr "发送 AdBlock 相关的通知邮件。请留意:此功能需要安装 \"msmtp\"。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." -msgstr "" +msgstr "AdBlock 通知邮件的发送地址。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "" +msgid "Set a new adblock job" +msgstr "设置一个新的广告拦截作业" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "设置" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." -msgstr "" +msgstr "并行下载处理 (分类、合并等) 的下载队列大小。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" +msgstr "来源(大小,焦点)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." -msgstr "" +msgstr "tcpdump使用的端口列表,用空格分隔端口。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "所选下载实用程序的特殊配置选项." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "开始日期" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "开始时间戳" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" -msgstr "" +msgstr "启动触发接口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "" +msgstr "状态 / 版本" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" msgstr "暂停" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." +msgstr "DNS 相关报告文件的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "拦截列表备份的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "生成拦截列表“adb_list.overall”的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." -msgstr "" +msgstr "生成拦截列表“adb_list.overall”的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "无法更新刷新计时器." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "刷新计时器已更新." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "星期几 (可选., 取值范围: 1-7 . 如与九月之间 ,用 - 分隔)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "时间分配 (要求., 范围: 0-23)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "分钟部分 (可选., 范围: 0-59)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28 msgid "The syslog output, pre-filtered for adblock related messages only." @@ -689,6 +677,8 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"这是始终拒绝某些(子)域的本地adblock黑名单。<br />请注意:每行仅添加一个域。" +"允许以“#”开头的注释-不允许使用IP地址,通配符和正则表达式。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23 msgid "" @@ -696,45 +686,56 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +"这是本地adblock白名单,始终允许某些(子)域。<br />请注意:每行仅添加一个域。" +"允许以“#”开头的注释-不允许使用IP地址,通配符和正则表达式。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." -msgstr "" +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." +msgstr "此选项卡显示上次生成的 DNS 报告,按“刷新”按钮获取当前报告。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "时间" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." -msgstr "" +msgstr "等待成功的DNS后端重新启动的超时。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16 msgid "" "To keep your adblock lists up-to-date, you should setup an automatic update " "job for these lists." -msgstr "" +msgstr "为了使您的广告过滤列表保持最新,你应该为这些列表设置一个自动更新作业。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" -msgstr "" +msgstr "前 10 统计数据" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." -msgstr "" +msgstr "广告拦截通知邮件的主题。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "DNS 请求总数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "触发延迟" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "无法保存更改: %s" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "变种" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" msgstr "详细的调试记录" @@ -743,35 +744,112 @@ msgstr "详细的调试记录" msgid "" "Whitelist changes have been saved. Refresh your adblock lists that changes " "take effect." -msgstr "" +msgstr "白名单更改已保存。刷新您的广告阻止列表,以使更改生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." -msgstr "" +msgstr "白名单..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" -msgstr "" +msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" -msgstr "" +msgstr "抑制 (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" -msgstr "" +msgstr "最大结果集大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" -msgstr "" +msgstr "BIND(/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" -msgstr "" +msgstr "原始(/ tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" -msgstr "" +msgstr "未绑定 (/var/lib/unbound)" + +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "改变此项后需要完全重启 adblock 以生效<br /><p> </p>" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS 文件重置" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "受支持且已完全预先配置的adblock源列表,已预先选择了已激活的源。<br /> <b> " +#~ "<em>为避免OOM错误,请不要选择太多列表!</em> </b> <br />列出各个域范围的大" +#~ "小信息,如下所示:<br />&#8226;&#xa0; <b> S </b>(-10k),<b> M </" +#~ "b>(10k -30k)和<b> L </b>(30k-80k)适用于128 MByte设备,<br />&#8226;" +#~ "&#xa0; <b> XL </b>(80k-200k)应适用适用于256-512 MB设备,<br />&#" +#~ "8226;&#xa0; <b> XXL </b>(200k-)需要更多的RAM和多核支持,例如x86或树莓" +#~ "派设备。<br /> <p>&#xa0; </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "在 DNS 后端载入后重置黑名单 \"adb_list.overall\"。请留意:此选项将在后台启" +#~ "动 ubus/adblock 微监控。" + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "设置/替换新 AdBlock 任务" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "DNS相关报告文件的目标目录。默认值为“/tmp”,请最好使用USB记忆棒或其他本地磁" +#~ "盘。" + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "阻止列表备份的目标目录。默认值为“/tmp”,请最好使用U 盘或本地磁盘进行备份。" + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "这显示了上次生成的 DNS 报告,按刷新按钮获取当前报告。" + +#~ msgid "Local DNS Ports" +#~ msgstr "本地DNS端口" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "将所有 DNS 查询从“lan”区域重定向到本地解析器,包括 udp、tcp 协议的端口 ." + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "DNS请求(已阻止)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "DNS请求(总计)" + +#~ msgid "End Date" +#~ msgstr "结束日期" + +#~ msgid "Start Date" +#~ msgstr "开始日期" #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " diff --git a/applications/luci-app-adblock/po/zh_Hant/adblock.po b/applications/luci-app-adblock/po/zh_Hant/adblock.po index 44743996cb..f0ca098289 100644 --- a/applications/luci-app-adblock/po/zh_Hant/adblock.po +++ b/applications/luci-app-adblock/po/zh_Hant/adblock.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-06-28 19:19+0000\n" +"PO-Revision-Date: 2021-03-23 11:29+0000\n" "Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsadblock/zh_Hant/>\n" @@ -14,15 +14,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 +msgid "- unspecified -" +msgstr "未指定" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" -msgstr "動作" +msgstr "開始" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Active Sources" -msgstr "作用中的來源" +msgstr "活躍的來源" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -35,240 +40,233 @@ msgstr "Adblock 動作" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add Blacklist Domain" -msgstr "加入網域到黑名單" +msgstr "加入黑名單域名" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add Whitelist Domain" -msgstr "加入網域到白名單" +msgstr "加入白名單域名" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12 msgid "Add this (sub-)domain to your local blacklist." -msgstr "加入此網域到本地黑名單。" +msgstr "加入該(子)域名到您的本地黑名單。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47 msgid "Add this (sub-)domain to your local whitelist." -msgstr "加入此網域到本地白名單。" +msgstr "加入該(子)域名到您的本地白名單。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" -msgstr "" +msgstr "附加 Jail 封鎖清單" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 msgid "Additional Settings" msgstr "附加設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Additional trigger delay in seconds before adblock processing begins." -msgstr "事件觸發啟動前的延時 (秒)。" +msgstr "附加觸發 Adblock 行程延遲開始的秒數。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Advanced DNS Settings" msgstr "進階 DNS 設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Advanced E-Mail Settings" -msgstr "進階 E-Mail 設定" +msgstr "進階電郵設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 msgid "Advanced Report Settings" msgstr "進階報告設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" -msgstr "回覆" +msgstr "回答" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "備份目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" -msgstr "基礎臨時目錄" +msgstr "基本臨時目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." -msgstr "所有與 adblock 相關的執行時操作的基礎 Temp 目錄,例如下載、排序、合併等。" +msgstr "" +"執行期間所有與 Adblock 操作(例如下載、排序、合併等)相關的基本臨時目錄。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34 msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." -msgstr "黑名單變更已儲存。重新整理您的 adblock 清單,以使變更生效。" +msgstr "黑名單變更已儲存;請重新整理您的 Adblock 清單來使變更生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." -msgstr "黑名單清單..." +msgstr "黑名單…" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +msgid "Blocked DNS Requests" +msgstr "封鎖的 DNS 請求" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 msgid "Blocked Domain" -msgstr "已封鎖的網域" +msgstr "封鎖的域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Blocked Domains" -msgstr "封鎖網域" +msgstr "封鎖的域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" -msgstr "黑名單清單的備份" +msgstr "黑名單備份" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Blocklist Query" msgstr "封鎖清單查詢" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322 msgid "Blocklist Query..." -msgstr "黑名單查詢..." +msgstr "黑名單查詢…" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Blocklist Sources" msgstr "封鎖清單來源" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " "blocklist e.g. for guest wifi or kidsafe configurations." msgstr "" -"建置一個附加的 DNS 封鎖清單,以阻止對除了白名單中列出的所有網域之外的所有網域的存取。請注意:您可以使用此限制性封鎖清單,例如用於訪客 Wi-Fi " -"或 kidsafe 設定。" +"建立附加的 Jail 封鎖清單,以封鎖使用者存取除「此名單包含域名」之外的所有網" +"域;請注意:您可以在訪客 Wi-Fi 抑或兒童安全組態中使用此限制性封鎖清單。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" msgstr "取消" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 -msgid "" -"Changes on this tab needs a full adblock service restart to take effect.<br /" -"><p> </p>" -msgstr "此頁籤上的變更需要完整重新啟動 adblock 服務才能生效。<br /><p> </p>" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +msgid "Categories" +msgstr "類別" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Client" -msgstr "用戶端 Client" +msgstr "客户端" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" -"設定 adblock 軟體包以使用 DNS 封鎖廣告/濫用網域。有關更多資訊,請 <a href=\"https://github.com/" -"openwrt/packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" " -"rel=\"noreferrer noopener\" >檢視線上文件</a>" +"您可以在這裡設定 Adblock(廣告封鎖)套件的組態,以透過 DNS 封鎖廣告/濫用網" +"域;<a href=\"https://github.com/openwrt/packages/blob/master/net/adblock/" +"files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >請參閱線上文" +"件</a> 以獲得更多資訊" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 msgid "Count" -msgstr "次數" +msgstr "計數" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." -msgstr "建立壓縮的封鎖清單備份,將在下載錯誤或啟動期間使用它們。" +msgstr "建立壓縮的封鎖清單備份;它們將在下載錯誤時或啟動期間被使用。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "DNS Backend" msgstr "DNS 後端" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "DNS Directory" msgstr "DNS 目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "DNS File Reset" -msgstr "DNS 檔案重設" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "DNS 報告" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 -msgid "DNS Requests (blocked)" -msgstr "DNS 要求 (已封鎖)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 -msgid "DNS Requests (total)" -msgstr "DNS 要求 (總計)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Restart Timeout" -msgstr "DNS 重新啟動逾時" +msgstr "DNS 重新啟動逾時值" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Date" msgstr "日期" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable DNS Allow" -msgstr "停用 DNS 允許" +msgstr "停用 DNS 解析修改" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "Disable DNS Restarts" msgstr "停用 DNS 重新啟動" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." -msgstr "停用具有 自動載入/inotify 功能的 DNS 後端的 adblock 觸發重新啟動。" +msgstr "停用 Adblock 觸發具有「自動載入/inotify 」功能的 DNS 後端重新啟動。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "停用選擇性 DNS 白名單 (RPZ 通過)。" +msgstr "停用 DNS 選擇性白名單解析(忽略 RPZ,一律放行)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" -msgstr "網域" +msgstr "網域名稱" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Download Parameters" msgstr "下載參數" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "Download Queue" msgstr "下載佇列" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Download Utility" -msgstr "下載公用程式" +msgstr "下載工具" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "E-Mail Notification" -msgstr "E-Mail 通知" +msgstr "電子郵件通知" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "E-Mail Notification Count" -msgstr "E-Mail 通知計數" +msgstr "電郵通知數量" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "E-Mail Profile" -msgstr "E-Mail 資料" +msgstr "電郵設定檔" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Receiver Address" -msgstr "E-Mail 收件人位址" +msgstr "電郵收件人位址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "E-Mail Sender Address" -msgstr "E-Mail 寄件者位址" +msgstr "電郵寄件人位址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "E-Mail Topic" -msgstr "E-Mail 主旨" +msgstr "電郵主旨" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35 @@ -280,216 +278,226 @@ msgstr "編輯黑名單" msgid "Edit Whitelist" msgstr "編輯白名單" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Enable SafeSearch" msgstr "啟用安全搜尋" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "啟用適用於 YouTube 的中等安全搜尋篩選器。" +msgstr "啟用為 YouTube 設定的中度安全搜尋篩選器。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enable the adblock service." -msgstr "啟用 adblock 服務。" +msgstr "啟用 Adblock 服務。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "在出現任何處理錯誤的情況下啟用詳細偵錯日誌記錄。" +msgstr "在出現任何處理錯誤的情況下,請啟用詳細除錯日誌記錄。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 msgid "Enabled" msgstr "啟用" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 -msgid "End Date" -msgstr "結束日期" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 +msgid "End Timestamp" +msgstr "結束時間戳" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." -msgstr "強制執行 Google、Bing、DuckDuckGo、Yandex、YouTube 及 Pixabay 的安全搜尋。" +msgstr "" +"正在強制執行 Google, Bing, DuckDuckGo, Yandex, YouTube, Pixabay 的安全搜尋" +"中。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18 msgid "Existing job(s)" -msgstr "現有的工作" +msgstr "現存工作" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "External DNS Lookup Domain" -msgstr "外部 DNS 查詢網域" +msgstr "供 DNS 查詢的外部域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." -msgstr "外部網域,用於檢查 DNS 後端是否成功重新啟動。請注意:要停用此檢查,請將此選項設定為「false」。" +msgstr "" +"使用外部網域來檢查「DNS 後端」是否成功重新啟動;請注意:要停用此檢查,請輸入 " +"\"false\"。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157 msgid "Filter criteria like date, domain or client (optional)" -msgstr "篩選器條件,例如日期、網域或用戶端 (可選)" +msgstr "篩選器準則(例如:日期、域名或客戶端,可選)" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Firewall ports that should be forced locally." +msgstr "本地應被強制重新導向的防火牆通訊埠號。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Firewall source zones that should be forced locally." +msgstr "本地應被強制重新導向的防火牆來源區域。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush DNS Cache" -msgstr "清空 DNS 快取" +msgstr "清除 DNS 快取" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 msgid "Flush the DNS Cache before adblock processing as well." -msgstr "還要在處理 adblock 之前更新 DNS 快取。" +msgstr "在 Adblock 行程啟動前也要清除 DNS 快取。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "Force Local DNS" msgstr "強制本地 DNS" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +msgid "Forced Ports" +msgstr "強制埠號" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +msgid "Forced Zones" +msgstr "強制區域" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -"透過 tcpdump 收集與 DNS 相關的網路流量,並按需要提供 DNS 報告。請注意:這需要安裝額外的「tcpdump-mini」軟體包," -"並完整重新啟動 adblock 服務才能生效。" +"透過 tcpdump 收集與 DNS 相關的網路流量,並隨需提供 DNS 報告;請注意:這需要安" +"裝 \"tcpdump-mini\" 附加套件,且在完全重新啟動 Adblock 服務後才能生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 msgid "General Settings" msgstr "一般設定" #: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3 msgid "Grant access to LuCI app adblock" -msgstr "授予對 LuCI 應用程式 adblock 的存取權限" +msgstr "授予 luci-app-adblock 擁有 UCI 存取的權限" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 msgid "Information" msgstr "資訊" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Jail Directory" -msgstr "" +msgstr "Jail 檔案目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Last Run" msgstr "最後執行" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341 msgid "Latest DNS Requests" -msgstr "最新的 DNS 要求" +msgstr "最新 DNS 請求" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch" -msgstr "限制安全搜尋" +msgstr "限制性安全搜尋" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 msgid "Limit SafeSearch to certain providers." -msgstr "" +msgstr "啟用限制性安全搜尋,以限制給定搜尋引擎的搜尋範圍。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +msgid "Line number to remove" +msgstr "要移除的行號" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "List of available network devices used by tcpdump." -msgstr "tcpdump 使用的可用網路裝置清單。" +msgstr "用於 tcpdump 的可用網路裝置清單。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." -msgstr "觸發 adblock 啟動的可用網路介面清單。選擇「未指定」以使用傳統的啟動逾時而不是網路觸發器。" +msgstr "" +"用來觸發 Adblock 啟動的可用網路介面清單;選擇「未指定」則使用傳統的啟動逾時," +"而不透過網路觸發。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." -msgstr "支援的 DNS 後端清單及其預設清單目錄。要覆蓋預設路徑,請使用「DNS 目錄」選項。" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 -msgid "" -"List of supported and fully pre-configured adblock sources, already active " -"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not " -"select too many lists!</em></b><br /> List size information with the " -"respective domain ranges as follows:<br /> • <b>S</b> (-10k), " -"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices," -"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte " -"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " -"support, e.g. x86 or raspberry devices.<br /> <p> </p>" msgstr "" -"受支援且已完全預先設定的 adblock 來源清單,已啟動了預先選擇的來源。<br /> <b><em>為避免 OOM " -"錯誤,請不要選擇太多清單!</em></b><br /> 列出各個網域範圍的大小資訊,如下所示:<br /> • <b>S</b> " -"(-10k), <b>M</b> (10k-30k) 及 <b>L</b> (30k-80k) 適用於128 MByte 裝置,<br /> " -"• <b>XL</b> (80k-200k) 應適用適用於256-512 MByte 裝置,<br /> " -"• <b>XXL</b> (200k-) 需要更多的 RAM 和多核心支援,例如 x86 或樹莓派裝置。<br /> " -"<p> </p>" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368 -msgid "List of supported and fully pre-configured download utilities." -msgstr "已支援並完整預先設定的下載公用程式清單。" +"支援的 DNS 後端清單及其預設清單目錄;要重寫預設路徑,請使用「DNS 目錄」選項。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "Local DNS Ports" -msgstr "本地 DNS 連接埠" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 +msgid "List of supported and fully pre-configured download utilities." +msgstr "支援的下載工具清單(完全預先配置)。" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51 msgid "Log View" msgstr "日誌檢視" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" -msgstr "低優先順序服務" +msgstr "低優先權服務" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 msgid "Name / IP Address" -msgstr "名稱 / IP 位址" +msgstr "名稱/IP 位址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" -msgstr "沒有查詢結果!" +msgstr "查詢結果為空!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21 msgid "No adblock related logs yet!" -msgstr "尚無與 adblock 相關的日誌!" +msgstr "尚無與 Adblock 相關的日誌!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19 msgid "Overview" -msgstr "總覽" +msgstr "概覽" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." -msgstr "「msmtp」用於 adblock 通知 E-Mail 的設定檔。" +msgstr "\"msmtp\" 使用的設定檔,用於 Adblock 寄送通知電子郵件。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132 msgid "Query" msgstr "查詢" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82 msgid "Query active blocklists and backups for a specific domain." -msgstr "查詢特定網域的作用中封鎖清單和備份。" +msgstr "查詢「特定網域」的活躍封鎖清單和備份。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." -msgstr "如果總體封鎖清單總數小於或等於給定的限制,請提高通知數量,以取得 E-Mail。" +msgstr "" +"提高通知數量;除非整體「封鎖清單數」小於或等於給定的限制,否則將不再取得電子" +"郵件。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." -msgstr "adblock 通知 E-Mail 的收件人位址。" +msgstr "Adblock 通知電子郵件的收件人位址。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "" -"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " -"to UDP and TCP protocol." -msgstr "將所有 DNS 查詢從「lan」區域重新導向到本地 DNS 解析程式,包括 UDP 及 TCP 協定的連接埠 。" +"Redirect all DNS queries from specified zones to the local DNS resolver, " +"applies to UDP and TCP protocol." +msgstr "" +"重新導向指定區域的所有「DNS 查詢」到本地 DNS 解析器(適用於 UDP 與 TCP 協" +"定)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." -msgstr "降低 adblock 背景處理的優先順序以減少系統資源。請注意:此變更要求完整重新啟動 adblock 服務才能生效。" +msgstr "" +"降低 Adblock 後台行程的優先權以耗費更少的系統資源;請注意:此變更需要您完全重" +"新啟動 Adblock 服務後才能生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 msgid "Refresh" msgstr "重新整理" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139 msgid "Refresh DNS Report" msgstr "重新整理 DNS 報告" @@ -497,182 +505,178 @@ msgstr "重新整理 DNS 報告" msgid "Refresh Timer" msgstr "重新整理計時器" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 msgid "Refresh Timer..." -msgstr "重新整理計時器..." +msgstr "重新整理計時器…" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." -msgstr "重新整理..." +msgstr "重新整理…" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Relax SafeSearch" -msgstr "" +msgstr "放寬安全搜尋" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +msgid "Reload" +msgstr "重新載入" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +msgid "Remove an existing job" +msgstr "移除一個現存工作" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report Chunk Count" -msgstr "報告區塊計數" +msgstr "報告區塊數量" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "報告區塊大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "報告目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "報告介面" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" -msgstr "報告連接埠" +msgstr "報告埠號" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." -msgstr "報告 tcpdump 使用的區塊計數。" +msgstr "報告 tcpdump 使用的區塊數量。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." -msgstr "報告 tcpdump 使用的區塊大小 (MByte)。" +msgstr "報告 tcpdump 使用的區塊大小(單位:MB)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -msgid "" -"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " -"Please note: This option starts a small ubus/adblock monitor in the " -"background." -msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +msgid "Restart" +msgstr "重新啟動" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96 msgid "Result" msgstr "結果" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Directories" msgstr "執行目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Flags" msgstr "執行旗標" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Interfaces" msgstr "執行介面" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 msgid "Run Utils" -msgstr "執行公用程式" +msgstr "執行工具" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 msgid "Save" msgstr "儲存" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." -msgstr "寄送 adblock 相關的通知 E-Mail。請注意:這需要額外安裝「msmtp」套件。" +msgstr "" +"寄送與 Adblock 相關的通知電子郵件;請注意:這需要安裝 \"msmtp\" 附加套件。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." -msgstr "adblock 通知 E-Mail 的寄件者位址。" +msgstr "Adblock 通知電子郵件的寄件人位址。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29 -msgid "Set/Replace a new adblock job" -msgstr "設定/取代新的 adblock 工作" +msgid "Set a new adblock job" +msgstr "設定一個新的廣告攔截工作" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 msgid "Settings" msgstr "設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." -msgstr "下載佇列的大小,用於下載處理程序 (包括排序、合併等)。" +msgstr "平行下載處理(包含排序、合併等)的下載佇列大小。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 msgid "Sources (Size, Focus)" -msgstr "來源 (大小、焦點)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 -msgid "" -"Space separated list of DNS-related firewall ports which should be forced " -"locally." -msgstr "" +msgstr "來源(大小、聚焦的類別)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." -msgstr "" +msgstr "tcpdump 使用的通訊埠號(以空格分隔)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 msgid "Special config options for the selected download utility." -msgstr "選取的下載公用程式的特殊設定選項。" +msgstr "已選擇下載工具的特殊組態選項。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 -msgid "Start Date" -msgstr "開始日期" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301 +msgid "Start Timestamp" +msgstr "啟動時間戳" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 msgid "Startup Trigger Interface" msgstr "啟動觸發介面" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 msgid "Status / Version" -msgstr "狀態 / 版本" +msgstr "狀態/版本" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Suspend" -msgstr "暫停" +msgstr "掛起" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 -msgid "" -"Target directory for DNS related report files. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "與 DNS 相關的報告檔案的目標目錄。預設為「/tmp」,請最好使用 USD 隨身碟或其他本地磁碟。" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +msgid "Target directory for DNS related report files." +msgstr "DNS 相關報告檔案的目標目錄。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362 -msgid "" -"Target directory for blocklist backups. Default is '/tmp', please use " -"preferably an usb stick or another local disk." -msgstr "封鎖清單備份的目標目錄。預設為「/tmp」,請最好使用 USD 隨身碟或其他本地磁碟。" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +msgid "Target directory for blocklist backups." +msgstr "攔截清單備份的目標目錄。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "Target directory for the generated blocklist 'adb_list.overall'." -msgstr "產生封鎖清單「adb_list.overall」的目標目錄。" +msgstr "產生封鎖清單 \"adb_list.overall\" 的目標目錄。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." -msgstr "" +msgstr "產生 Jail 封鎖清單 \"adb_list.jail\" 的目標目錄。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 msgid "The Refresh Timer could not been updated." -msgstr "無法更新重新整理計時器。" +msgstr "重新整理計時器無法更新。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 msgid "The Refresh Timer has been updated." msgstr "重新整理計時器已更新。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "一週的某一天 (選擇,數值:1-7,可用 , 或 - 分隔)" +msgstr "一週內的某天(取值範圍:1-7,以 \",\" 抑或 \"-\" 分隔,可選)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 -#, fuzzy msgid "The hours portition (req., range: 0-23)" -msgstr "小時 (必須,範圍:0-23)" +msgstr "小時部分(取值範圍:0-23,必需)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 -#, fuzzy msgid "The minutes portion (opt., range: 0-59)" -msgstr "分鐘 (選擇,範圍:0-59)" +msgstr "分鐘部分(取值範圍:0-59,必需)" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28 msgid "The syslog output, pre-filtered for adblock related messages only." -msgstr "系統日誌輸出,僅針對 adblock 相關的訊息進行了預先篩選。" +msgstr "系統日誌輸出(預先篩選出只與 Adblock 相關的訊息)。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:23 msgid "" @@ -680,8 +684,9 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -"這是永遠拒絕某些 (子) 網域的本地 adblock 黑名單。<br />請注意:每行只加入一個網域。允許使用「#」引入註解 - 不允許使用 ip " -"位址、萬用字元和規則運算式。" +"這是永遠拒絕存取給定(子)網域的本地 Adblock 黑名單;<br />請注意:每行只能加" +"入一個域名,允許使用 \"#\" 來引入註解,但不允許使用 IP 位址、萬用字元和正規表" +"示式。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23 msgid "" @@ -689,84 +694,180 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -"這是永遠允許某些 (子) 網域的本地 adblock 白名單。<br />請注意:每行只加入一個網域。允許使用「#」引入註解 - 不允許使用 ip " -"位址、萬用字元和規則運算式。" +"這是永遠拒絕存取給定(子)網域的本地 Adblock 白名單;<br />請注意:每行只能加" +"入一個域名,允許使用 \"#\" 來引入註解,但不允許使用 IP 位址、萬用字元和正規表" +"示式。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298 msgid "" -"This shows the last generated DNS Report, press the refresh button to get a " -"current one." -msgstr "這顯示了上次產生的 DNS 報告,按下重新整理按鈕取得目前報告。" +"This tab shows the last generated DNS Report, press the 'Refresh' button to " +"get a current one." +msgstr "此頁籤顯示上次產生的 DNS 報告,按「更新」按鈕取得目前報告。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "時間" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." -msgstr "逾時以等待 DNS 後端成功重新啟動。" +msgstr "等待 DNS 後端成功重新啟動的逾時值。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16 msgid "" "To keep your adblock lists up-to-date, you should setup an automatic update " "job for these lists." -msgstr "若要使 adblock 清單保持為最新,應為這些清單設定自動更新作業。" +msgstr "要保持最新的 Adblock 清單,您應該設定這些清單的自動更新工作。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:334 msgid "Top 10 Statistics" -msgstr "十大統計" +msgstr "前 10 統計" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." -msgstr "adblock 通知 E-Mail 的主旨。" +msgstr "Adblock 通知電子郵件的主旨。" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309 +msgid "Total DNS Requests" +msgstr "DNS 請求總數" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "觸發延遲" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "無法儲存變更:%s" +msgstr "無法儲存變更(訊息:%s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +msgid "Variants" +msgstr "變體" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 msgid "Verbose Debug Logging" -msgstr "詳細的偵錯記錄" +msgstr "詳細除錯日誌" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:69 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:15 msgid "" "Whitelist changes have been saved. Refresh your adblock lists that changes " "take effect." -msgstr "白名單變更已儲存。重新整理 adblock 清單以使變更生效。" +msgstr "白名單變更已儲存;請重新整理您的 Adblock 清單來使變更生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." -msgstr "白名單..." +msgstr "白名單…" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 msgid "dnsmasq (/tmp/dnsmasq.d)" -msgstr "dnsmasq (/tmp/dnsmasq.d)" +msgstr "Dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150 msgid "max. result set size" -msgstr "" +msgstr "最大結果集大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" -msgstr "named (/var/lib/bind)" +msgstr "BIND (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "raw (/tmp)" -msgstr "raw (/tmp)" +msgstr "原始 (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "unbound (/var/lib/unbound)" -msgstr "unbound (/var/lib/unbound)" +msgstr "Unbound (/var/lib/unbound)" + +#~ msgid "" +#~ "Changes on this tab needs a full adblock service restart to take effect." +#~ "<br /><p> </p>" +#~ msgstr "" +#~ "此分頁上的變更需要您完全重新啟動 Adblock 服務後才能生效。<br /><p> </" +#~ "p>" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS 檔案重設" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.<br /> <b><em>To avoid OOM errors, please " +#~ "do not select too many lists!</em></b><br /> List size information with " +#~ "the respective domain ranges as follows:<br /> • <b>S</b> " +#~ "(-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 " +#~ "MByte devices,<br /> • <b>XL</b> (80k-200k) should work for " +#~ "256-512 MByte devices,<br /> • <b>XXL</b> (200k-) needs more " +#~ "RAM and Multicore support, e.g. x86 or raspberry devices.<br /> <p> " +#~ "</p>" +#~ msgstr "" +#~ "Adblock 支援的來源清單(完全預先配置),預先選擇的來源已啟動。<br /" +#~ "><b><em>為避免出現 OOM 錯誤,請不要選擇太多的清單!</em></b><br />與清單包" +#~ "含域名數和各自使用範圍相關的資訊,如下所述:<br />• <b>S</b> " +#~ "(<10k), <b>M</b> (10k-30k) 和 <b>L</b> (30k-80k) 適用於 128MB 裝置," +#~ "<br />• <b>XL</b> (80k-200k) 適用於 256-512MB 裝置,<br /" +#~ ">• <b>XXL</b> (>200k) 則需要更多的 RAM 和多核心處理器支援" +#~ "(例如:x86 抑或樹莓派裝置)。<br /><p> </p>" + +#~ msgid "" +#~ "Resets the final DNS blocklist 'adb_list.overall' after DNS backend " +#~ "loading. Please note: This option starts a small ubus/adblock monitor in " +#~ "the background." +#~ msgstr "" +#~ "在 DNS 後端載入後,重設最終的 DNS 封鎖清單 \"adb_list.overall\";請注意:" +#~ "啟用此選項會在後台啟動用於 Adblock 的 ubus 小型監視器。" + +#~ msgid "Set/Replace a new adblock job" +#~ msgstr "設定/取代 Adblock 新工作" + +#~ msgid "" +#~ "Target directory for DNS related report files. Default is '/tmp', please " +#~ "use preferably an usb stick or another local disk." +#~ msgstr "" +#~ "DNS 相關報告檔的目標目錄(預設值:\"/tmp\");請最好使用 USB 隨身碟或其他" +#~ "本地磁碟來儲存。" + +#~ msgid "" +#~ "Target directory for blocklist backups. Default is '/tmp', please use " +#~ "preferably an usb stick or another local disk." +#~ msgstr "" +#~ "封鎖清單備份的目標目錄(預設值:\"/tmp\");請最好使用 USB 隨身碟或其他本" +#~ "地磁碟來儲存。" + +#~ msgid "" +#~ "This shows the last generated DNS Report, press the refresh button to get " +#~ "a current one." +#~ msgstr "此處顯示最後產生的 DNS 報告,請按下「重新整理」按鈕以更新報告。" + +#~ msgid "Local DNS Ports" +#~ msgstr "本地 DNS 連接埠" + +#~ msgid "" +#~ "Redirect all DNS queries from 'lan' zone to the local DNS resolver, " +#~ "applies to UDP and TCP protocol." +#~ msgstr "" +#~ "將所有 DNS 查詢從「lan」區域重新導向到本地 DNS 解析程式,包括 UDP 及 TCP " +#~ "協定的連接埠 。" + +#~ msgid "" +#~ "Space separated list of DNS-related firewall ports which should be forced " +#~ "locally." +#~ msgstr "與 DNS 相關的防火牆連接埠,應在本地強制 (以空格分隔字串)。" + +#~ msgid "DNS Requests (blocked)" +#~ msgstr "DNS 要求 (已封鎖)" + +#~ msgid "DNS Requests (total)" +#~ msgstr "DNS 要求 (總計)" + +#~ msgid "End Date" +#~ msgstr "結束日期" + +#~ msgid "Start Date" +#~ msgstr "開始日期" #~ msgid "" #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " diff --git a/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json b/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json index 3f52b7eea2..a2fd0556cf 100644 --- a/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json +++ b/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json @@ -18,11 +18,14 @@ "/sbin/logread -e adblock-": [ "exec" ], "/usr/sbin/logread -e adblock-": [ "exec" ], "/etc/init.d/adblock list" : [ "exec" ], - "/etc/init.d/adblock start" : [ "exec" ], + "/etc/init.d/adblock reload" : [ "exec" ], + "/etc/init.d/adblock restart" : [ "exec" ], "/etc/init.d/adblock suspend" : [ "exec" ], "/etc/init.d/adblock resume" : [ "exec" ], "/etc/init.d/adblock report * [0-9]* [a-z]* json" : [ "exec" ], - "/etc/init.d/adblock timer * [0-9]* [0-9*]* [1-7,-*]*" : [ "exec" ], + "/etc/init.d/adblock timer list" : [ "exec" ], + "/etc/init.d/adblock timer remove [0-9]*" : [ "exec" ], + "/etc/init.d/adblock timer add * [0-9]* [0-9*]* [1-7,-*]*" : [ "exec" ], "/etc/init.d/adblock query *" : [ "exec" ] }, "uci": ["adblock"] |