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 fdd358038c..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
@@ -17,7 +17,7 @@ function handleAction(ev) {
]),
E('div', { 'class': 'right' }, [
E('button', {
- 'class': 'btn',
+ 'class': 'btn cbi-button',
'click': L.hideModal
}, _('Cancel')),
' ',
@@ -52,7 +52,7 @@ function handleAction(ev) {
]),
E('div', { 'class': 'right' }, [
E('button', {
- 'class': 'btn',
+ 'class': 'btn cbi-button',
'click': L.hideModal
}, _('Cancel')),
' ',
@@ -104,7 +104,7 @@ function handleAction(ev) {
]),
E('div', { 'class': 'right' }, [
E('button', {
- 'class': 'btn',
+ 'class': 'btn cbi-button',
'click': L.hideModal
}, _('Cancel')),
' ',
@@ -158,7 +158,7 @@ function handleAction(ev) {
]),
E('div', { 'class': 'right' }, [
E('button', {
- 'class': 'btn',
+ 'class': 'btn cbi-button',
'click': L.hideModal
}, _('Cancel')),
' ',
@@ -195,7 +195,7 @@ return view.extend({
render: function(dnsreport) {
if (!dnsreport) {
- dnsreport = '{ "data": "" }';
+ dnsreport = '{}';
};
var content;
content = JSON.parse(dnsreport);
@@ -213,32 +213,28 @@ return view.extend({
]);
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]) {
- //[!CDATA[
- b_addr = '' + content.data.top_domains[i].address + '';
- //]]>
+ if (content.top_domains[i]) {
+ b_addr = '' + content.top_domains[i].address + '';
}
- 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]) {
- //[!CDATA[
- c_addr = '' + content.data.top_blocked[i].address + '';
- //]]>
+ if (content.top_blocked[i]) {
+ c_addr = '' + content.top_blocked[i].address + '';
}
rows_top.push([
a_cnt,
@@ -264,35 +260,33 @@ return view.extend({
]);
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,
- //[!CDATA[
- '' + content.data.requests[i].domain + '',
- //]]>
- content.data.requests[i].rc,
+ content.requests[i].date,
+ content.requests[i].time,
+ content.requests[i].client,
+ '' + content.requests[i].domain + '',
+ content.requests[i].rc,
button
]);
}
@@ -301,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 Timestamp')),
- 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 Timestamp')),
- 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' }, _('Total DNS Requests')),
- 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' }, _('Blocked DNS Requests')),
- 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 146f24a57c..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('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.
')); + 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.
')); + s.tab('sources', _('Blocklist Sources')); /* general settings tab @@ -374,10 +395,9 @@ 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.')); @@ -388,7 +408,7 @@ return view.extend({ o.value('aria2c'); 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; /* @@ -418,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; @@ -444,14 +460,17 @@ return view.extend({ /* advanced report settings tab */ + o = s.taboption('adv_report', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = 'Changes on this tab needs a full adblock service restart to take effect.'; + 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.')); @@ -491,18 +510,102 @@ return view.extend({ /* blocklist sources tab */ + o = s.taboption('sources', form.DummyValue, '_sub'); + o.rawhtml = true; + o.default = 'List of supported and fully pre-configured adblock sources.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -436,7 +421,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -457,7 +442,7 @@ msgstr "" msgid "Overview" msgstr "نظرة عامة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -469,23 +454,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -493,7 +478,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -505,156 +489,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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -688,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -708,19 +695,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -729,7 +716,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -740,15 +732,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -756,14 +748,21 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "تحتاج التغييرات في علامة التبويب هذه إلى إعادة تشغيل خدمة أدبلوك كاملة " +#~ "حتى تصبح نافذة المفعول.
" diff --git a/applications/luci-app-adblock/po/bg/adblock.po b/applications/luci-app-adblock/po/bg/adblock.po index 364cff617f..61a50b2a10 100644 --- a/applications/luci-app-adblock/po/bg/adblock.po +++ b/applications/luci-app-adblock/po/bg/adblock.po @@ -4,16 +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/overview.js:384 -#: 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: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:262 +#: 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 "" @@ -42,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -91,11 +91,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -103,11 +103,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -115,15 +115,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +134,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -416,7 +403,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -437,7 +424,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -449,23 +436,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -473,7 +460,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -485,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 +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:304 +#: 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:258 +#: 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:411 +#: 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,19 +677,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -709,7 +698,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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,15 +714,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -736,14 +730,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 cc58137b93..c17fbc2be9 100644 --- a/applications/luci-app-adblock/po/bn_BD/adblock.po +++ b/applications/luci-app-adblock/po/bn_BD/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0.2\n" -#: 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:399 +#: 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:262 +#: 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 "সক্রিয় উৎস" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +97,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -109,11 +109,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -121,15 +121,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +140,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -422,7 +409,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -443,7 +430,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -455,23 +442,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -479,7 +466,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -491,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -674,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -694,19 +683,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -715,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -726,15 +720,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -742,14 +736,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 40f28b6182..f28fd14f48 100644 --- a/applications/luci-app-adblock/po/ca/adblock.po +++ b/applications/luci-app-adblock/po/ca/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9.1-dev\n" -#: 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:399 +#: 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:262 +#: 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 "" @@ -48,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:431 +#: 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:354 +#: 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 "" -#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +99,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -111,11 +111,11 @@ msgstr "" 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 "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -123,15 +123,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +142,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "Llista d’utilitats de baixada admeses i plenament preconfigurades." @@ -424,7 +411,7 @@ msgstr "Llista d’utilitats de baixada admeses i plenament preconfigurades." msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Servei de prioritat baixa" @@ -445,7 +432,7 @@ msgstr "" msgid "Overview" msgstr "Visió de conjunt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -457,23 +444,23 @@ 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:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -481,7 +468,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Actualitza" @@ -493,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 +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:304 +#: 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:258 +#: 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:411 +#: 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,19 +685,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -717,7 +706,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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ó" @@ -728,15 +722,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -744,14 +738,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/cs/adblock.po b/applications/luci-app-adblock/po/cs/adblock.po index 3b7557c08d..7930b0580f 100644 --- a/applications/luci-app-adblock/po/cs/adblock.po +++ b/applications/luci-app-adblock/po/cs/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.3.2-dev\n" -#: 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:399 +#: 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:262 +#: 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 "Aktivní zdroje" @@ -48,44 +48,44 @@ msgstr "Přidejte tuto (sub)doménu na místní blacklist." msgid "Add this (sub-)domain to your local whitelist." msgstr "Přidat tuto (sub)doménu na místní whitelist." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: 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 "Další nastavení" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354 +#: 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 "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 "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 "Pokročilá nastavení hlášení" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:261 +#: 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:377 +#: 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:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Základní dočasný adresář" -#: 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:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -102,11 +102,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -114,11 +114,11 @@ msgstr "" 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 "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Záloha blokovacího seznamu" @@ -126,15 +126,15 @@ msgstr "Záloha blokovacího seznamu" msgid "Blocklist Query" msgstr "Dotaz na blokovací seznam" -#: 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:322 msgid "Blocklist Query..." 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:431 +#: 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 " @@ -145,21 +145,20 @@ msgstr "" #: 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:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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: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í." @@ -430,7 +417,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Služba s nízkou prioritou" @@ -451,7 +438,7 @@ msgstr "" msgid "Overview" msgstr "Přehled" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -463,23 +450,23 @@ 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:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -487,7 +474,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Aktualizovat" @@ -499,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -682,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -702,19 +691,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Prodleva spuštění" @@ -723,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:346 +#: 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í" @@ -734,15 +728,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -750,14 +744,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/de/adblock.po b/applications/luci-app-adblock/po/de/adblock.po index 4de171674e..ad53f578ce 100644 --- a/applications/luci-app-adblock/po/de/adblock.po +++ b/applications/luci-app-adblock/po/de/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -103,11 +103,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Geblockte DNS-Anfragen" @@ -115,11 +115,11 @@ msgstr "Geblockte DNS-Anfragen" 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 "Gesperrte Domains" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Sperrliste Backup" @@ -127,15 +127,15 @@ msgstr "Sperrliste Backup" msgid "Blocklist Query" msgstr "Sperrlistenabfrage" -#: 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: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:431 +#: 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 " @@ -149,23 +149,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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 "" -"Änderungen auf diesem Reiter werden erst nach Neustart des adblock Services " -"sichtbar.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Liste von unterstützten und vollständig vorkonfigurierten Adblock-Quellen, " -"bereits aktivierte Quellen sind vorgewählt.
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Liste der unterstützten und vollständig vorkonfigurierten Download-" @@ -466,7 +442,7 @@ msgstr "" msgid "Log View" msgstr "Protokollansicht" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Dienst mit niedriger Priorität" @@ -487,7 +463,7 @@ msgstr "Aktuell noch keine Adblock-Logs vorhanden!" msgid "Overview" msgstr "Übersicht" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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." @@ -500,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:486 +#: 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." @@ -508,11 +484,11 @@ 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:338 +#: 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 specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -520,7 +496,7 @@ msgstr "" "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:349 +#: 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,7 +507,6 @@ msgstr "" "des Adblock-Dienstes um in Kraft zu treten." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Aktualisieren" @@ -543,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:331 +#: 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:326 +#: 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:457 +#: 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 "Berichte Datenblock-Anzahl" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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 "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:334 +#: 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." @@ -627,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:474 +#: 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:359 +#: 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." @@ -647,66 +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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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." @@ -748,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:304 +#: 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:258 +#: 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:411 +#: 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." @@ -772,19 +739,19 @@ 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:336 +#: 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:478 +#: 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/dnsreport.js:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Verzögerung der Trigger-Bedingung" @@ -793,7 +760,12 @@ msgstr "Verzögerung der Trigger-Bedingung" msgid "Unable to save changes: %s" msgstr "Konnte Änderungen nicht speichern: %s" -#: 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: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" @@ -806,15 +778,15 @@ 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:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -822,14 +794,80 @@ msgstr "kresd (/etc/kresd)" msgid "max. result set size" msgstr "Max. Größe des Result-Sets" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "Änderungen auf diesem Reiter werden erst nach Neustart des adblock " +#~ "Services sichtbar.
" + +#~ 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.
" +#~ "
" +#~ msgstr "" +#~ "Liste von unterstützten und vollständig vorkonfigurierten Adblock-" +#~ "Quellen, bereits aktivierte Quellen sind vorgewählt." + +#~ 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." diff --git a/applications/luci-app-adblock/po/el/adblock.po b/applications/luci-app-adblock/po/el/adblock.po index fd5f0b8504..1adaff1952 100644 --- a/applications/luci-app-adblock/po/el/adblock.po +++ b/applications/luci-app-adblock/po/el/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "Ενεργές πηγές" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +97,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Αποκλεισμένα αιτήματα DNS" @@ -109,11 +109,11 @@ msgstr "Αποκλεισμένα αιτήματα DNS" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -121,15 +121,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +140,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -422,7 +409,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -443,7 +430,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -455,23 +442,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -479,7 +466,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -491,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -674,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -694,19 +683,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -715,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -726,15 +720,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -742,14 +736,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/en/adblock.po b/applications/luci-app-adblock/po/en/adblock.po index c642513d94..9c0d690d29 100644 --- a/applications/luci-app-adblock/po/en/adblock.po +++ b/applications/luci-app-adblock/po/en/adblock.po @@ -10,16 +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/overview.js:384 -#: 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: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:262 +#: 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 "" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +97,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -109,11 +109,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -121,15 +121,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +140,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -422,7 +409,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -443,7 +430,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -455,23 +442,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -479,7 +466,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -491,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -674,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -694,19 +683,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -715,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -726,15 +720,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -742,14 +736,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 5fbdced2fb..c0182e5cda 100644 --- a/applications/luci-app-adblock/po/es/adblock.po +++ b/applications/luci-app-adblock/po/es/adblock.po @@ -13,16 +13,16 @@ msgstr "" "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:384 -#: 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: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:262 +#: 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" @@ -51,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:431 +#: 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:354 +#: 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 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:261 +#: 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:377 +#: 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:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Directorio temporal base" -#: 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:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,11 +106,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Solicitudes de DNS bloqueadas" @@ -118,11 +118,11 @@ msgstr "Solicitudes de DNS bloqueadas" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Copia de seguridad de lista de bloqueo" @@ -130,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:324 +#: 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:431 +#: 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 " @@ -153,23 +153,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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 "" -"Los cambios en esta pestaña requieren un reninicio completo del servicio " -"adblock para que los cambios surtan efecto.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Lista de fuentes de adblock compatibles y totalmente preconfiguradas, las " -"fuentes ya activas están preseleccionadas.
" +#~ msgstr "" +#~ "Los cambios en esta pestaña requieren un reninicio completo del servicio " +#~ "adblock para que los cambios surtan efecto.
" + +#~ 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.
" +#~ "
" +#~ msgstr "" +#~ "Lista de fuentes de adblock compatibles y totalmente preconfiguradas, las " +#~ "fuentes ya activas están preseleccionadas." +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "Tuetut ja valmiiksi asetetut lataustyökalut." @@ -429,7 +416,7 @@ msgstr "Tuetut ja valmiiksi asetetut lataustyökalut." msgid "Log View" msgstr "Lokinäkymä" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Matala sovelluksen prioriteetti" @@ -450,7 +437,7 @@ msgstr "Ei vielä Adblock-lokeja!" msgid "Overview" msgstr "Yleiskatsaus" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -462,23 +449,23 @@ 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:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -486,7 +473,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Päivitä" @@ -498,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -681,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -701,19 +690,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -722,7 +711,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -733,15 +727,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -749,14 +743,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/fr/adblock.po b/applications/luci-app-adblock/po/fr/adblock.po index 9666f76426..9b324d817b 100644 --- a/applications/luci-app-adblock/po/fr/adblock.po +++ b/applications/luci-app-adblock/po/fr/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.4-dev\n" -#: 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:399 +#: 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:262 +#: 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" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -103,11 +103,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -115,11 +115,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Sauvegarde de la liste de blocage" @@ -127,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:324 +#: 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:431 +#: 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 " @@ -150,23 +150,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Liste des sources adblock supportées et entièrement pré-configurées, les " -"sources déjà actives sont présélectionnées.
" - -#: 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: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é-" @@ -471,7 +446,7 @@ msgstr "" msgid "Log View" msgstr "Vue du journal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Service en priorité basse" @@ -492,7 +467,7 @@ 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:482 +#: 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." @@ -506,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:486 +#: 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." @@ -515,19 +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:338 +#: 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 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:349 +#: 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 " @@ -539,7 +514,6 @@ msgstr "" "effet." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Actualiser" @@ -551,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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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." @@ -635,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:474 +#: 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:359 +#: 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." @@ -657,67 +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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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." @@ -763,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:304 +#: 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:258 +#: 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:411 +#: 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." @@ -787,19 +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:336 +#: 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:478 +#: 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/dnsreport.js:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Délai de déclenchement" @@ -808,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:346 +#: 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" @@ -821,15 +793,15 @@ 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:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -837,14 +809,81 @@ msgstr "kresd (/etc/kresd)" msgid "max. result set size" msgstr "taille max. des résultats" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "Les modifications de cet onglet nécessitent un redémarrage complet du " +#~ "service adblock pour prendre effet
" + +#~ 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.
" +#~ "
" +#~ msgstr "" +#~ "Liste des sources adblock supportées et entièrement pré-configurées, les " +#~ "sources déjà actives sont présélectionnées." + +#~ 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." diff --git a/applications/luci-app-adblock/po/he/adblock.po b/applications/luci-app-adblock/po/he/adblock.po index 5eb413d684..63aaa30a82 100644 --- a/applications/luci-app-adblock/po/he/adblock.po +++ b/applications/luci-app-adblock/po/he/adblock.po @@ -11,16 +11,16 @@ msgstr "" "n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "" @@ -49,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +98,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -110,11 +110,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -122,15 +122,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -141,21 +141,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -423,7 +410,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -444,7 +431,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -456,23 +443,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -480,7 +467,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -492,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -675,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -695,19 +684,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -716,7 +705,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -727,15 +721,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -743,14 +737,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 e039821d0c..3e0e872af2 100644 --- a/applications/luci-app-adblock/po/hi/adblock.po +++ b/applications/luci-app-adblock/po/hi/adblock.po @@ -4,16 +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/overview.js:384 -#: 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: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:262 +#: 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 "" @@ -42,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -91,11 +91,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -103,11 +103,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -115,15 +115,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +134,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -416,7 +403,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -437,7 +424,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -449,23 +436,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -473,7 +460,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -485,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 +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:304 +#: 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:258 +#: 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:411 +#: 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,19 +677,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -709,7 +698,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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,15 +714,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -736,14 +730,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 e05e7deaba..da1e00c73b 100644 --- a/applications/luci-app-adblock/po/hu/adblock.po +++ b/applications/luci-app-adblock/po/hu/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +99,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -111,11 +111,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -123,15 +123,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +142,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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: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." @@ -425,7 +412,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Alacsony prioritású szolgáltatás" @@ -446,7 +433,7 @@ msgstr "" msgid "Overview" msgstr "Áttekintés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -458,23 +445,23 @@ 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:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -482,7 +469,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Frissítés" @@ -494,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -679,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -699,19 +688,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Aktiváló késleltetése" @@ -720,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:346 +#: 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" @@ -731,15 +725,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -747,14 +741,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/it/adblock.po b/applications/luci-app-adblock/po/it/adblock.po index 52f482168c..e618848f0e 100644 --- a/applications/luci-app-adblock/po/it/adblock.po +++ b/applications/luci-app-adblock/po/it/adblock.po @@ -13,16 +13,16 @@ msgstr "" "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:384 -#: 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: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:262 +#: 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 "Sorgenti attive" @@ -51,43 +51,43 @@ msgstr "Aggiungi questo (sotto)dominio alla tua lista nera locale." msgid "Add this (sub-)domain to your local whitelist." msgstr "Aggiungi questo (sotto)dominio alla tua lista bianca locale." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: 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 "Impostazioni aggiuntive" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354 +#: 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 "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 "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 "Impostazioni avanzate dei report" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -100,11 +100,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -112,11 +112,11 @@ msgstr "" msgid "Blocked Domain" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -124,15 +124,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,23 +143,20 @@ msgstr "" #: 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:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" 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.
" +#: 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 "" -"I cambiamenti effetuati in questa pagina richiedono un riavvio completo del " -"servizio adblock per essere applicati.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Elenco delle utility di download supportate e completamente preconfigurate." @@ -434,7 +419,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Serviio a bassa priorità" @@ -455,7 +440,7 @@ msgstr "" msgid "Overview" msgstr "Riassunto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -467,24 +452,24 @@ 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:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -492,7 +477,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Ricaricare" @@ -504,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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 "Impostazioni" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -688,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -708,19 +695,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Ritardo Innesco" @@ -729,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:346 +#: 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" @@ -740,15 +732,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -756,14 +748,24 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "I cambiamenti effetuati in questa pagina richiedono un riavvio completo " +#~ "del servizio adblock per essere applicati.
" + +#~ msgid "DNS File Reset" +#~ msgstr "Reset File DNS" diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po index 5427814b32..8e6c3ec9ef 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -13,16 +13,16 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "アクティブなソース" @@ -51,43 +51,43 @@ msgstr "この(サブ)ドメインをローカルのブラックリストに追 msgid "Add this (sub-)domain to your local whitelist." msgstr "この(サブ)ドメインをローカルのホワイトリストに追加します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" 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:354 +#: 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 "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 "リポートの詳細設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -103,11 +103,11 @@ msgid "" msgstr "" "ブラックリストへの変更が保存されました。adblockを更新して変更を適用します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "ブロックされたDNSリクエスト" @@ -115,11 +115,11 @@ msgstr "ブロックされたDNSリクエスト" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "ブロックリストのバックアップ" @@ -127,15 +127,15 @@ msgstr "ブロックリストのバックアップ" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -149,23 +149,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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 "" -"このタブでの変更を適用するにはadblockサービスを完全に再起動する必要がありま" -"す。
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。" @@ -452,7 +437,7 @@ msgstr "サポートされ、かつ設定済のダウンロード ユーティ msgid "Log View" msgstr "ログビュー" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "優先度が低いサービス" @@ -473,7 +458,7 @@ msgstr "まだadblolck関連のログがありません!" msgid "Overview" msgstr "概要" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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メールに使用するプロファイル。" @@ -485,7 +470,7 @@ msgstr "検索" msgid "Query active blocklists and backups for a specific domain." msgstr "特定のドメインのアクティブなブロックリストとバックアップを検索します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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." @@ -493,17 +478,17 @@ msgstr "" "通知数を上げて、ブロックリスト全体の数が指定された制限以下の場合に電子メール" "を取得します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: 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 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:349 +#: 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 " @@ -514,7 +499,6 @@ msgstr "" "す。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "リフレッシュ" @@ -526,83 +510,85 @@ 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 "タイマーをリフレッシュ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "tcpdumpによって使用されるレポートチャンク数。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "tcpdumpがメガバイト単位で使用するレポートチャンクサイズ。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 -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 "" -"DNSバックエンドの読み込み後に、最後のDNSブロックリスト'adb_list.overlall'をリ" -"セットします。注意: このオプションはバックグラウンドで小さなubus/adblockモニ" -"ターを起動します。" #: 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:334 +#: 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 +596,19 @@ msgstr "" "adblock関連の通知Eメールを送信します。注意: これは追加の'msmtp'パッケージのイ" "ンストールが必要です。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:474 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." msgstr "adblockの通知Eメール送信者アドレス。" #: 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:359 +#: 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,65 +616,58 @@ msgstr "" "ダウンロード処理(並べ替え、統合など)のダウンロードキューのサイズを並列で指定" "します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:494 +#: 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:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "tcpdumpが使用するポートの、スペースで区切られたリスト。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:391 +#: 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:307 +#: 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:452 -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 "" -"DNS関連のレポートファイルのターゲットディレクトリです。デフォルトは'/tmp'で" -"す。可能ならばUSBメモリまたは別のローカルディスクを使用してください。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 -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 "" -"ブロックリストのバックアップに使用されるターゲットディレクトリです。デフォル" -"トは'/tmp'です。可能ならばUSBメモリまたは別のローカルディスクを使用してくださ" -"い。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 +#: 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:435 +#: 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 "リフレッシュタイマーを更新できませんでした。" -#: 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 "リフレッシュタイマーが更新されました。" @@ -728,19 +707,17 @@ msgstr "" "す。
" +#~ msgstr "" +#~ "このタブでの変更を適用するにはadblockサービスを完全に再起動する必要があり" +#~ "ます。
" + +#~ 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レポートを表示しています。更新ボタンを押して現在の状況" +#~ "を表示します。" diff --git a/applications/luci-app-adblock/po/ko/adblock.po b/applications/luci-app-adblock/po/ko/adblock.po index 18e07c9df1..82a8d262e9 100644 --- a/applications/luci-app-adblock/po/ko/adblock.po +++ b/applications/luci-app-adblock/po/ko/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "활성화된 소스" @@ -48,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:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" 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:354 +#: 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:261 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #, fuzzy msgid "Answer" msgstr "답변" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 #, fuzzy msgid "Backup Directory" 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:389 msgid "Base Temp Directory" 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:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -101,11 +101,11 @@ msgstr "" "블랙리스트 변경사항이 저장되었습니다. Adblock 리스트를 새로고침하여 변경사항" "을 적용하세요." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "차단된 DNS 요청" @@ -113,11 +113,11 @@ msgstr "차단된 DNS 요청" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "차단목록 백업" @@ -125,15 +125,15 @@ msgstr "차단목록 백업" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -144,21 +144,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -426,7 +413,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -447,7 +434,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -459,23 +446,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -483,7 +470,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -495,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -678,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -698,19 +687,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -719,7 +708,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -730,15 +724,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -746,14 +740,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 46561c141d..fa4e84463c 100644 --- a/applications/luci-app-adblock/po/mr/adblock.po +++ b/applications/luci-app-adblock/po/mr/adblock.po @@ -10,16 +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/overview.js:384 -#: 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: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:262 +#: 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 "" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +97,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -109,11 +109,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -121,15 +121,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +140,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -422,7 +409,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -443,7 +430,7 @@ msgstr "" msgid "Overview" msgstr "आढावा" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -455,23 +442,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -479,7 +466,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -491,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -674,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -694,19 +683,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -715,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -726,15 +720,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -742,14 +736,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 b1ae169dc4..678d4b8f36 100644 --- a/applications/luci-app-adblock/po/ms/adblock.po +++ b/applications/luci-app-adblock/po/ms/adblock.po @@ -10,16 +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/overview.js:384 -#: 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: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:262 +#: 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 "" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +97,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -109,11 +109,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -121,15 +121,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +140,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -422,7 +409,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -443,7 +430,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -455,23 +442,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -479,7 +466,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -491,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -674,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -694,19 +683,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -715,7 +704,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -726,15 +720,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -742,14 +736,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/nb_NO/adblock.po b/applications/luci-app-adblock/po/nb_NO/adblock.po index 288ec3dadf..c49b18a486 100644 --- a/applications/luci-app-adblock/po/nb_NO/adblock.po +++ b/applications/luci-app-adblock/po/nb_NO/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "Aktive kilder" @@ -48,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:431 +#: 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 "Ytterligere innstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354 +#: 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 "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 "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 "Avanserte rapporteringsinnstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +99,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Blokkerte DNS-forespørsler" @@ -111,11 +111,11 @@ msgstr "Blokkerte DNS-forespørsler" 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 "Blokkerte domener" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Blokkeringslistesikkerhetskopi" @@ -123,15 +123,15 @@ msgstr "Blokkeringslistesikkerhetskopi" msgid "Blocklist Query" msgstr "Blokkeringslistespørring" -#: 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:322 msgid "Blocklist Query..." 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:431 +#: 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,21 +142,20 @@ msgstr "" #: 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:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -425,7 +412,7 @@ msgstr "" msgid "Log View" msgstr "Loggvisning" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Lavprioritetstjeneste" @@ -446,7 +433,7 @@ msgstr "" msgid "Overview" msgstr "Oversikt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -458,23 +445,23 @@ msgstr "Spørring" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -482,7 +469,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Gjenoppfrisk" @@ -494,156 +480,159 @@ msgstr "Gjenoppfrisk DNS-rapport" msgid "Refresh Timer" 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 "Gjenoppfrisk tidsur …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:331 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Gjenoppfrisk …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Rapportmappe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Rapportgrensesnitt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Rapportporter" -#: 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:476 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: 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:421 -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: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 "" -#: 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 "Lagre" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:334 +#: 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:474 +#: 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 "Innstillinger" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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 "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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -677,17 +666,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:304 +#: 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:258 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 msgid "Time" msgstr "Tid" -#: 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:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -697,19 +686,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "Topp 10-statistikk" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Utløserforsinkelse" @@ -718,7 +707,12 @@ msgstr "Utløserforsinkelse" msgid "Unable to save changes: %s" msgstr "Kunne ikke lagre endringer: %s" -#: 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: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 "" @@ -729,15 +723,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274 msgid "Whitelist..." msgstr "Hvitliste …" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -745,14 +739,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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-filtilbakestilling" diff --git a/applications/luci-app-adblock/po/pl/adblock.po b/applications/luci-app-adblock/po/pl/adblock.po index 6f1b93d993..e8040df4f3 100644 --- a/applications/luci-app-adblock/po/pl/adblock.po +++ b/applications/luci-app-adblock/po/pl/adblock.po @@ -11,16 +11,16 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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" @@ -49,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:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" 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 "Dodatkowe ustawienia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354 +#: 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 "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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -104,11 +104,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Zablokowane żądania DNS" @@ -116,11 +116,11 @@ msgstr "Zablokowane żądania DNS" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Kopia zapasowa list blokujących" @@ -128,15 +128,15 @@ msgstr "Kopia zapasowa list blokujących" msgid "Blocklist Query" msgstr "Zapytanie do list blokujących" -#: 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: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 czarnej listy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: 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 " @@ -151,23 +151,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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 "" -"Zmiany na tej karcie wymagają ponownego uruchomienia usługi Adblock, aby " -"zostały wprowadzone.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Lista obsługiwanych i w pełni skonfigurowanych źródeł adblock, niektóre " -"aktywne źródła są wstępnie wybrane.
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Lista obsługiwanych i wstępnie skonfigurowanych narzędzi do pobierania." @@ -468,7 +443,7 @@ msgstr "" msgid "Log View" msgstr "Widok dziennika" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Usługa niskopriorytetowa" @@ -489,7 +464,7 @@ 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:482 +#: 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 e-mail." @@ -503,7 +478,7 @@ 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:486 +#: 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." @@ -511,11 +486,11 @@ msgstr "" "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:338 +#: 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ń 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 specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -523,7 +498,7 @@ msgstr "" "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:349 +#: 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 " @@ -533,7 +508,6 @@ msgstr "" "Uwaga: wymagany restart usługi adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Odśwież" @@ -545,82 +519,85 @@ msgstr "Odśwież raport DNS" msgid "Refresh Timer" msgstr "Odśwież zegar" -#: 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..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:331 +#: 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:326 +#: 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:457 +#: 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 "Zgłoś liczbę fragmentów" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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 "" -"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/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:334 +#: 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,19 +605,19 @@ msgstr "" "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:474 +#: 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ń 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 "" -#: 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:359 +#: 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." @@ -648,65 +625,59 @@ 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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 "" -"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:377 -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 "" -"Katalog docelowy dla kopii zapasowej list. Domyślnie jest to '/tmp', użyj " -"najlepiej pamięci USB lub innego dysku." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 +#: 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:435 +#: 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." -#: 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." @@ -749,19 +720,17 @@ msgstr "" "
" +#~ msgstr "" +#~ "Zmiany na tej karcie wymagają ponownego uruchomienia usługi Adblock, aby " +#~ "zostały wprowadzone.
" + +#~ msgid "DNS File Reset" +#~ msgstr "Resetuj plik DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.
" +#~ "
" +#~ msgstr "" +#~ "Lista obsługiwanych i w pełni skonfigurowanych źródeł adblock, niektóre " +#~ "aktywne źródła są wstępnie wybrane." + +#~ 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." diff --git a/applications/luci-app-adblock/po/pt/adblock.po b/applications/luci-app-adblock/po/pt/adblock.po index c167ac4e59..64c9dea713 100644 --- a/applications/luci-app-adblock/po/pt/adblock.po +++ b/applications/luci-app-adblock/po/pt/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.4.1-dev\n" -#: 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:399 +#: 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:262 +#: 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" @@ -48,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:431 +#: 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" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354 +#: 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" -#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -104,11 +104,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Solicitações de DNS bloqueadas" @@ -116,11 +116,11 @@ msgstr "Solicitações de DNS bloqueadas" 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:373 +#: 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" @@ -128,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:324 +#: 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:431 +#: 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 " @@ -151,23 +151,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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 "" -"As alterações nesta guia precisam de uma reinicialização completa do serviço " -"adblock para entrar em vigor.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Listagem das fontes de adblock compatíveis e totalmente pré-configuradas, as " -"fontes já ativas estão pré-selecionadas.
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Lista de ferramentas de descarregamento suportadas e completamente pré-" @@ -471,7 +447,7 @@ msgstr "" msgid "Log View" msgstr "Vista do registo log" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Serviço de Baixa Prioridade" @@ -492,7 +468,7 @@ 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:482 +#: 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'." @@ -506,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:486 +#: 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." @@ -514,11 +490,11 @@ 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:338 +#: 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 specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -526,7 +502,7 @@ msgstr "" "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:349 +#: 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 " @@ -537,7 +513,6 @@ msgstr "" "reinicialização completa do serviço adblock para que faça efeito." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Atualizar" @@ -549,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:331 +#: 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:326 +#: 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:457 +#: 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 "Relatar Contagem de Porções" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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 "" -"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/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:334 +#: 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." @@ -633,19 +610,19 @@ 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:474 +#: 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 "" -#: 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:359 +#: 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." @@ -653,70 +630,62 @@ msgstr "" "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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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 "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:452 -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 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:377 -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 "" -"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:407 +#: 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:435 +#: 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." @@ -758,19 +727,17 @@ msgstr "" "permitidos.
" +#~ msgstr "" +#~ "As alterações nesta guia precisam de uma reinicialização completa do " +#~ "serviço adblock para entrar em vigor.
" + +#~ 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.
" +#~ "
" +#~ msgstr "" +#~ "Listagem das fontes de adblock compatíveis e totalmente pré-configuradas, " +#~ "as fontes já ativas estão pré-selecionadas." + +#~ 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." diff --git a/applications/luci-app-adblock/po/pt_BR/adblock.po b/applications/luci-app-adblock/po/pt_BR/adblock.po index 92fb7d3806..820b5d7a64 100644 --- a/applications/luci-app-adblock/po/pt_BR/adblock.po +++ b/applications/luci-app-adblock/po/pt_BR/adblock.po @@ -13,16 +13,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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" @@ -51,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -107,11 +107,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Requisições bloqueadas do DNS" @@ -119,11 +119,11 @@ msgstr "Requisições bloqueadas do DNS" 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:373 +#: 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" @@ -131,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:324 +#: 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 das listas de bloqueio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: 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 " @@ -154,23 +154,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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 "" -"As alterações nesta guia precisam de uma reinicialização completa do serviço " -"adblock para entrar em vigor.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Listagem das fontes de bloqueio de anúncios compatíveis e totalmente pré-" -"configuradas, as fontes já ativas estão pré-selecionadas.
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "Lista de ferramentas compatíveis e já pré-configuradas para download." @@ -474,7 +449,7 @@ msgstr "Lista de ferramentas compatíveis e já pré-configuradas para download. msgid "Log View" msgstr "Exibir o Registro Log" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Serviço de Baixa Prioridade" @@ -495,7 +470,7 @@ msgstr "Ainda não há registros relacionados ao bloqueio de anúncio!" msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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 " @@ -511,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:486 +#: 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." @@ -519,13 +494,13 @@ 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:338 +#: 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 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 specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -533,7 +508,7 @@ msgstr "" "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:349 +#: 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 " @@ -545,7 +520,6 @@ msgstr "" "surta efeito." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Atualizar" @@ -557,83 +531,85 @@ msgstr "Atualizar o Relatório do DNS" msgid "Refresh Timer" 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:331 +#: 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:326 +#: 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:457 +#: 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 "Contagem de Pedaços do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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 "" -"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/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:334 +#: 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." @@ -641,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:474 +#: 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 "" -#: 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:359 +#: 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." @@ -662,68 +638,60 @@ 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 -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 "" -"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:407 +#: 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:435 +#: 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." @@ -766,19 +734,17 @@ 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:304 +#: 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." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 +#: 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:411 +#: 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." @@ -790,21 +756,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:336 +#: 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:478 +#: 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/dnsreport.js:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Gatilho de Atraso" @@ -813,7 +779,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:346 +#: 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 "Registros Detalhados de Depuração" @@ -826,15 +797,15 @@ 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:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -842,14 +813,81 @@ msgstr "kresd (/etc/kresd)" 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:402 +#: 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:404 +#: 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:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "As alterações nesta guia precisam de uma reinicialização completa do " +#~ "serviço adblock para entrar em vigor.
" + +#~ 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.
" +#~ "
" +#~ msgstr "" +#~ "Listagem das fontes de bloqueio de anúncios compatíveis e totalmente pré-" +#~ "configuradas, as fontes já ativas estão pré-selecionadas." + +#~ 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." diff --git a/applications/luci-app-adblock/po/ro/adblock.po b/applications/luci-app-adblock/po/ro/adblock.po index a763d6ccf9..779b1f2236 100644 --- a/applications/luci-app-adblock/po/ro/adblock.po +++ b/applications/luci-app-adblock/po/ro/adblock.po @@ -11,16 +11,16 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: 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:399 +#: 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:262 +#: 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" @@ -49,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -104,11 +104,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -116,11 +116,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Copie de Rezervă Pentru Lista de Blocate" @@ -128,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:324 +#: 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:431 +#: 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 " @@ -151,21 +151,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Lista surselor acceptate și complet pre-configurate ale abdlock, surse deja " -"active sunt preselectate.
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -465,7 +443,7 @@ msgstr "" msgid "Log View" msgstr "Vizualizare Jurnal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -486,7 +464,7 @@ msgstr "Nu există încă jurnale adblock!" msgid "Overview" msgstr "Prezentare generală" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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." @@ -500,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:486 +#: 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." @@ -508,17 +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:338 +#: 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 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:349 +#: 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 " @@ -529,7 +507,6 @@ msgstr "" "o repornire completă a serviciului de blocare pentru a avea efect." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Reîmprospătare" @@ -541,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -724,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -744,19 +724,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Intârzierea declanșării" @@ -765,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:346 +#: 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 "" @@ -776,15 +761,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -792,14 +777,35 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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.
" +#~ "
" +#~ msgstr "" +#~ "Lista surselor acceptate și complet pre-configurate ale abdlock, surse " +#~ "deja active sunt preselectate." diff --git a/applications/luci-app-adblock/po/ru/adblock.po b/applications/luci-app-adblock/po/ru/adblock.po index 8572bfdfd4..0f105ad647 100644 --- a/applications/luci-app-adblock/po/ru/adblock.po +++ b/applications/luci-app-adblock/po/ru/adblock.po @@ -16,17 +16,17 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: 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:399 +#: 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 #, fuzzy msgid "- unspecified -" msgstr "- не указано -" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:262 +#: 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 "Активные источники" @@ -55,44 +55,44 @@ msgstr "Добавить этот (под-)домен в локальный чё msgid "Add this (sub-)domain to your local whitelist." msgstr "Добавить этот (под-)домен в локальный белый список." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: 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:354 +#: 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 "Расширенные настройки электронной почты" -#: 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:261 +#: 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:377 +#: 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:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 #, fuzzy msgid "Base Temp Directory" 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:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -109,11 +109,11 @@ msgstr "" "Изменения чёрного списка сохранены. Для того, чтобы они вступили в силу, " "обновите списки блокировок." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Заблокированные DNS-запросы" @@ -121,11 +121,11 @@ msgstr "Заблокированные DNS-запросы" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Резервная копия чёрного списка" @@ -133,15 +133,15 @@ msgstr "Резервная копия чёрного списка" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -156,23 +156,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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 "" -"Для вступления в силу изменений на этой вкладке требуется полный перезапуск " -"службы Adblock.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 Обратите внимание: для работы этой функции необходим пакет '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 "Основные настройки" @@ -400,37 +393,41 @@ msgstr "Основные настройки" msgid "Grant access to LuCI app 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:435 +#: 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:343 +#: 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:317 +#: 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:317 +#: 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:447 +#: 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." -#: 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." @@ -438,7 +435,7 @@ msgstr "" "Список сетевых интерфейсов для запуска Adblock в случае их доступности. " "Выберите «не определено» для стандартного запуска по тайм-ауту." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397 +#: 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." @@ -446,28 +443,7 @@ 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.
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Список поддерживаемых предварительно настроенных утилит для загрузки списков." @@ -477,7 +453,7 @@ msgstr "" msgid "Log View" msgstr "Просмотр журнала" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Низкий приоритет службы" @@ -498,7 +474,7 @@ msgstr "Ещё нет журналов, связанных с Adblock!" msgid "Overview" msgstr "Обзор" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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' для отправки почтовых уведомлений." @@ -511,7 +487,7 @@ msgid "Query active blocklists and backups for a specific domain." msgstr "" "Поиск определенного домена в активных списках блокировок и резервных копиях." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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 " @@ -520,11 +496,11 @@ msgstr "" "Увеличение количества уведомлений для отправки письма в случае, если " "количество блокировок не превышает указанного числа." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: 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 specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -532,7 +508,7 @@ msgstr "" "Перенаправление всех DNS-запросов из указанных зон к локальной службе DNS " "Lookup. Применяется к протоколам TCP и UDP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: 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 " @@ -543,7 +519,6 @@ msgstr "" "полная перезагрузка службы Adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Обновить" @@ -555,84 +530,86 @@ 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 "Обновить таймер..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "Количество фрагментов отчёта, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Размер фрагментов отчёта, используемых tcpdump, в мегабайтах." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 -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 "" -"Сброс последнего списка блокировок DNS 'adb_list.overall' после загрузки " -"службы DNS.
" +#~ msgstr "" +#~ "Для вступления в силу изменений на этой вкладке требуется полный " +#~ "перезапуск службы Adblock.
" + +#~ msgid "DNS File Reset" +#~ msgstr "Сброс файла DNS" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.
" +#~ "
" +#~ msgstr "" +#~ "Список поддерживаемых предварительно настроенных источников списков " +#~ "блокировок, уже активные источники отмечены." + +#~ 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -427,7 +414,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -448,7 +435,7 @@ msgstr "" msgid "Overview" msgstr "Prehľad" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -460,23 +447,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -484,7 +471,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -496,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -679,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -699,19 +688,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -720,7 +709,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -731,15 +725,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -747,14 +741,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/sv/adblock.po b/applications/luci-app-adblock/po/sv/adblock.po index 240107fc80..823b824310 100644 --- a/applications/luci-app-adblock/po/sv/adblock.po +++ b/applications/luci-app-adblock/po/sv/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "Aktiva källor" @@ -48,45 +48,45 @@ msgstr "Lägg till denna (under-)domän till din lokala svartlista." msgid "Add this (sub-)domain to your local whitelist." msgstr "Lägg till denna (under-)domän i din lokala vitlista." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" 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 "Fler inställningar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354 +#: 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 "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 "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 "Avancerade rapportinställningar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:261 +#: 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:377 +#: 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:368 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 msgid "Base Temp Directory" msgstr "Tempkatalogbas" -#: 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:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -103,11 +103,11 @@ 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:286 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282 msgid "Blacklist..." msgstr "Svartlista..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Blockerade DNS-uppslag" @@ -115,11 +115,11 @@ msgstr "Blockerade DNS-uppslag" 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 "Blockerade domäner" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Blockeringslistssäkerhetskopia" @@ -127,15 +127,15 @@ msgstr "Blockeringslistssäkerhetskopia" msgid "Blocklist Query" msgstr "Blockeringslistsfråga" -#: 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:322 msgid "Blocklist Query..." 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:431 +#: 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 " @@ -149,23 +149,20 @@ msgstr "" #: 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:59 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 msgid "Cancel" 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.
" +#: 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 "" -"Ändringar i denna flik kräver en fullständig omstart av " -"annonsblockerinstjänsten för att få verkan.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Lista med stödja och fullt förkonfigurerade annonsblockeringskällor. Redan " -"aktiva källor är förvalda.
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "Lista över stödda och helt förkonfigurerade nedladdningsverktyg." @@ -460,7 +437,7 @@ msgstr "Lista över stödda och helt förkonfigurerade nedladdningsverktyg." msgid "Log View" msgstr "Logutsikt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Lågprioriterad tjänst" @@ -481,7 +458,7 @@ msgstr "Inga annonsblockerinsrelaterade loggar ännu!" msgid "Overview" msgstr "Översikt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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-" @@ -495,7 +472,7 @@ msgstr "Fråga" msgid "Query active blocklists and backups for a specific domain." 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:486 +#: 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." @@ -503,11 +480,11 @@ 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:338 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "Receiver address for adblock notification e-mails." 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 specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -515,7 +492,7 @@ 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:349 +#: 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 " @@ -526,7 +503,6 @@ msgstr "" "omstart av annonsblockeringstjänsten för att ha verkan." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Uppdatera" @@ -538,159 +514,159 @@ msgstr "Förnya DNS-rapporten" msgid "Refresh Timer" 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 "Förnya stoppuret..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:331 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 msgid "Refresh..." msgstr "Fräscha upp..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:326 +#: 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:457 +#: 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 "Rapportera klimpantal" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report Chunk Size" msgstr "Rapportera klimpstorlek" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Report Directory" msgstr "Rapportkatalog" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Report Interface" msgstr "Rapportgränssnitt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Report Ports" msgstr "Rapporthamnar" -#: 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:476 msgid "Report chunk count used by tcpdump." msgstr "Rapportera klimpantal använt av tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "Rapportera klimpstorlek som används av tcpdump i MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 -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 "" -"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." #: 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 "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 "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 "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 "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:334 +#: 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:474 +#: 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 "Inställningar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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 "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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -724,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -744,19 +720,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -765,7 +741,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -776,15 +757,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -792,14 +773,54 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "Ändringar i denna flik kräver en fullständig omstart av " +#~ "annonsblockerinstjänsten för att få verkan.
" + +#~ 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.
" +#~ "
" +#~ msgstr "" +#~ "Lista med stödja och fullt förkonfigurerade annonsblockeringskällor. " +#~ "Redan aktiva källor är förvalda." + +#~ 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." diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index 2b5c7989d6..97207592ed 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -1,16 +1,16 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: 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:399 +#: 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:262 +#: 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 "" @@ -39,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -88,11 +88,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -100,11 +100,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -112,15 +112,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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,21 +131,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -413,7 +400,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -434,7 +421,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -446,23 +433,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -470,7 +457,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -482,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -665,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -685,19 +674,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -706,7 +695,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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,15 +711,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -733,14 +727,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 b5c8fcd3f8..89f4e4fde8 100644 --- a/applications/luci-app-adblock/po/tr/adblock.po +++ b/applications/luci-app-adblock/po/tr/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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" @@ -48,44 +48,44 @@ 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:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" 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 "Ek Ayarlar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354 +#: 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 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:261 +#: 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:377 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Backup Directory" msgstr "Yedekleme Dizini" -#: 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:389 msgid "Base Temp Directory" msgstr "Geçici dosyalar icin temel Dizin" -#: 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:389 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -102,11 +102,11 @@ 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:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Engellenen DNS İstekleri" @@ -114,11 +114,11 @@ msgstr "Engellenen DNS İstekleri" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "Engelleme Listesi Yedekleme" @@ -126,15 +126,15 @@ msgstr "Engelleme Listesi Yedekleme" msgid "Blocklist Query" msgstr "Engelleme Listesi Sorgusu" -#: 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: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:431 +#: 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 " @@ -149,23 +149,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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.
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -453,7 +438,7 @@ msgstr "" msgid "Log View" msgstr "Kayıtları göster" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "Düşük Öncelikli Servis" @@ -474,7 +459,7 @@ msgstr "Henüz adblock ile ilgili kayıt yok!" msgid "Overview" msgstr "Genel bakış" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -486,23 +471,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -510,7 +495,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Yenile" @@ -522,156 +506,159 @@ msgstr "DNS Raporunu Yenile" 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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -705,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -725,19 +712,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -746,7 +733,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -757,15 +749,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -773,14 +765,24 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "Bu sekmedeki değişikliklerin yürürlüğe girmesi için reklam engelleme " +#~ "hizmetinin yeniden başlatılması gerekir.
" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS Dosya Sıfırlama" diff --git a/applications/luci-app-adblock/po/uk/adblock.po b/applications/luci-app-adblock/po/uk/adblock.po index e820568c8b..83ed4b371f 100644 --- a/applications/luci-app-adblock/po/uk/adblock.po +++ b/applications/luci-app-adblock/po/uk/adblock.po @@ -11,16 +11,16 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.3.2-dev\n" -#: 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:399 +#: 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:262 +#: 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 "Активні джерела" @@ -49,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +98,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -110,11 +110,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -122,15 +122,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -141,21 +141,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -423,7 +410,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -444,7 +431,7 @@ msgstr "" msgid "Overview" msgstr "Огляд" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -456,23 +443,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -480,7 +467,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "Оновити" @@ -492,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 "" @@ -675,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:304 +#: 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:258 +#: 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:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -695,19 +684,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "" @@ -716,7 +705,12 @@ msgstr "" msgid "Unable to save changes: %s" 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: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 "" @@ -727,15 +721,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -743,14 +737,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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 26c2f9a196..3a2cd43d41 100644 --- a/applications/luci-app-adblock/po/vi/adblock.po +++ b/applications/luci-app-adblock/po/vi/adblock.po @@ -10,16 +10,16 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" -#: 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:399 +#: 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:262 +#: 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 "" @@ -48,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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,11 +98,11 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" @@ -110,11 +110,11 @@ msgstr "" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "" @@ -122,15 +122,15 @@ msgstr "" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -141,21 +141,20 @@ msgstr "" #: 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:59 +#: 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.
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -424,7 +411,7 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "" @@ -445,7 +432,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -457,23 +444,23 @@ msgstr "" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -481,7 +468,6 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "" @@ -493,156 +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:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: 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:462 +#: 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:421 -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: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:334 +#: 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:474 +#: 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:359 +#: 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:494 +#: 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:467 +#: 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:391 +#: 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:307 +#: 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:452 -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:377 -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:407 +#: 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:435 +#: 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 +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:304 +#: 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:258 +#: 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:411 +#: 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,19 +685,19 @@ msgid "" "job for these lists." 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:334 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: 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:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" @@ -717,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:346 +#: 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" @@ -729,15 +723,15 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "" @@ -745,14 +739,17 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: 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:404 +#: 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:401 +#: 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" diff --git a/applications/luci-app-adblock/po/zh_Hans/adblock.po b/applications/luci-app-adblock/po/zh_Hans/adblock.po index f1caeb7a44..ca176ee29a 100644 --- a/applications/luci-app-adblock/po/zh_Hans/adblock.po +++ b/applications/luci-app-adblock/po/zh_Hans/adblock.po @@ -17,16 +17,16 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "活动源" @@ -55,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:431 +#: 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:354 +#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -104,11 +104,11 @@ msgid "" "take effect." msgstr "黑名单更改已保存。刷新您的广告阻止列表,以使更改生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "阻止的DNS请求" @@ -116,11 +116,11 @@ msgstr "阻止的DNS请求" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "黑名单列表的备份" @@ -128,15 +128,15 @@ msgstr "黑名单列表的备份" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -149,21 +149,20 @@ msgstr "" #: 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:59 +#: 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.
" -msgstr "改变此项后需要完全重启 adblock 以生效
" +#: 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:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"受支持且已完全预先配置的adblock源列表,已预先选择了已激活的源。
" -"&#xa0;
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "支持的和完全预先配置的下载实用程序列表." @@ -448,7 +428,7 @@ msgstr "支持的和完全预先配置的下载实用程序列表." msgid "Log View" msgstr "日志视图" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "低优先级服务" @@ -469,7 +449,7 @@ msgstr "尚无与adblock相关的日志!" msgid "Overview" msgstr "概览" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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通知电子邮件的配置文件。" @@ -481,24 +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:486 +#: 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:338 +#: 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 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:349 +#: 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 " @@ -508,7 +488,6 @@ msgstr "" "adblock服务才能生效." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "刷新" @@ -520,161 +499,159 @@ 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 "定时恢复中..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "报告 tcpdump 所使用的区块数量。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: 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 显示)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 -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 "" -"在 DNS 后端载入后重置黑名单 \"adb_list.overall\"。请留意:此选项将在后台启动 " -"ubus/adblock 微监控。" #: 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:334 +#: 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 相关的通知邮件。请留意:此功能需要安装 \"msmtp\"。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:474 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." 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:359 +#: 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:494 +#: 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:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "tcpdump使用的端口列表,用空格分隔端口。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:391 +#: 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:307 +#: 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:452 -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 "" -"DNS相关报告文件的目标目录。默认值为“/tmp”,请最好使用USB记忆棒或其他本地磁" -"盘。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 -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 "" -"阻止列表备份的目标目录。默认值为“/tmp”,请最好使用U 盘或本地磁盘进行备份。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 +#: 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:435 +#: 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 "生成拦截列表“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 "无法更新刷新计时器." -#: 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 "刷新计时器已更新." @@ -712,17 +689,17 @@ msgstr "" "这是本地adblock白名单,始终允许某些(子)域。" +#~ msgstr "改变此项后需要完全重启 adblock 以生效
" + +#~ msgid "DNS File Reset" +#~ msgstr "DNS 文件重置" + +#~ msgid "" +#~ "List of supported and fully pre-configured adblock sources, already " +#~ "active sources are pre-selected.
" +#~ "
" +#~ msgstr "" +#~ "受支持且已完全预先配置的adblock源列表,已预先选择了已激活的源。&#xa0;
" + +#~ 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 报告,按刷新按钮获取当前报告。" diff --git a/applications/luci-app-adblock/po/zh_Hant/adblock.po b/applications/luci-app-adblock/po/zh_Hant/adblock.po index fdeb48c7b6..5e01fcdb66 100644 --- a/applications/luci-app-adblock/po/zh_Hant/adblock.po +++ b/applications/luci-app-adblock/po/zh_Hant/adblock.po @@ -16,16 +16,16 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5-dev\n" -#: 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:399 +#: 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:262 +#: 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 "活躍的來源" @@ -54,43 +54,43 @@ msgstr "加入該(子)域名到您的本地黑名單。" msgid "Add this (sub-)domain to your local whitelist." msgstr "加入該(子)域名到您的本地白名單。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 msgid "Additional Jail Blocklist" 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:354 +#: 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 "進階電郵設定" -#: 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:261 +#: 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:377 +#: 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:368 +#: 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:368 +#: 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." @@ -104,11 +104,11 @@ msgid "" "take effect." msgstr "黑名單變更已儲存;請重新整理您的 Adblock 清單來使變更生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:286 +#: 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:316 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "封鎖的 DNS 請求" @@ -116,11 +116,11 @@ msgstr "封鎖的 DNS 請求" 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:373 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 msgid "Blocklist Backup" msgstr "黑名單備份" @@ -128,15 +128,15 @@ msgstr "黑名單備份" msgid "Blocklist Query" 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: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:431 +#: 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 " @@ -149,22 +149,20 @@ msgstr "" #: 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:59 +#: 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." +#: 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 "" -"此分頁上的變更需要您完全重新啟動 Adblock 服務後才能生效。
" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:259 +#: 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 To avoid OOM errors, please do not " -"select too many lists!
" -msgstr "" -"Adblock 支援的來源清單(完全預先配置),預先選擇的來源已啟動。
" - -#: 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:403 msgid "List of supported and fully pre-configured download utilities." msgstr "支援的下載工具清單(完全預先配置)。" @@ -452,7 +431,7 @@ msgstr "支援的下載工具清單(完全預先配置)。" msgid "Log View" msgstr "日誌檢視" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "Low Priority Service" msgstr "低優先權服務" @@ -473,7 +452,7 @@ msgstr "尚無與 Adblock 相關的日誌!" msgid "Overview" msgstr "概覽" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:482 +#: 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 寄送通知電子郵件。" @@ -485,7 +464,7 @@ msgstr "查詢" msgid "Query active blocklists and backups for a specific domain." msgstr "查詢「特定網域」的活躍封鎖清單和備份。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: 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." @@ -493,11 +472,11 @@ msgstr "" "提高通知數量;除非整體「封鎖清單數」小於或等於給定的限制,否則將不再取得電子" "郵件。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: 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 specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -505,7 +484,7 @@ msgstr "" "重新導向指定區域的所有「DNS 查詢」到本地 DNS 解析器(適用於 UDP 與 TCP 協" "定)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 +#: 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 " @@ -515,7 +494,6 @@ msgstr "" "新啟動 Adblock 服務後才能生效。" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Refresh" msgstr "重新整理" @@ -527,163 +505,160 @@ 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 "重新整理計時器…" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:331 +#: 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:326 +#: 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:457 +#: 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:462 +#: 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:452 +#: 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:447 +#: 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:467 +#: 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:457 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 msgid "Report chunk count used by tcpdump." msgstr "報告 tcpdump 使用的區塊數量。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 msgid "Report chunk size used by tcpdump in MByte." msgstr "報告 tcpdump 使用的區塊大小(單位:MB)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 -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 "" -"在 DNS 後端載入後,重設最終的 DNS 封鎖清單 \"adb_list.overall\";請注意:啟用" -"此選項會在後台啟動用於 Adblock 的 ubus 小型監視器。" #: 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:334 +#: 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 相關的通知電子郵件;請注意:這需要安裝 \"msmtp\" 附加套件。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:474 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 msgid "Sender address for adblock notification E-Mails." 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:359 +#: 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:494 +#: 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:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 msgid "Space separated list of ports used by tcpdump." msgstr "tcpdump 使用的通訊埠號(以空格分隔)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:391 +#: 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:307 +#: 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:452 -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 "" -"DNS 相關報告檔的目標目錄(預設值:\"/tmp\");請最好使用 USB 隨身碟或其他本地" -"磁碟來儲存。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 -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 "" -"封鎖清單備份的目標目錄(預設值:\"/tmp\");請最好使用 USB 隨身碟或其他本地磁" -"碟來儲存。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 +#: 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:435 +#: 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 "重新整理計時器無法更新。" -#: 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 "重新整理計時器已更新。" @@ -723,17 +698,17 @@ msgstr "" "入一個域名,允許使用 \"#\" 來引入註解,但不允許使用 IP 位址、萬用字元和正規表" "示式。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:304 +#: 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 "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 +#: 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:411 +#: 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 後端成功重新啟動的逾時值。" @@ -743,19 +718,19 @@ msgid "" "job for these lists." msgstr "要保持最新的 Adblock 清單,您應該設定這些清單的自動更新工作。" -#: 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:334 msgid "Top 10 Statistics" msgstr "前 10 統計" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:478 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Topic for adblock notification E-Mails." msgstr "Adblock 通知電子郵件的主旨。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 +#: 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:354 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "Trigger Delay" msgstr "觸發延遲" @@ -764,7 +739,12 @@ msgstr "觸發延遲" msgid "Unable to save changes: %s" msgstr "無法儲存變更(訊息:%s)" -#: 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: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 "詳細除錯日誌" @@ -775,15 +755,15 @@ msgid "" "take effect." msgstr "白名單變更已儲存;請重新整理您的 Adblock 清單來使變更生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:278 +#: 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:400 +#: 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:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -791,14 +771,73 @@ msgstr "kresd (/etc/kresd)" msgid "max. result set size" msgstr "最大結果集大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 msgid "named (/var/lib/bind)" msgstr "BIND (/var/lib/bind)" -#: 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:424 msgid "raw (/tmp)" msgstr "原始 (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:401 +#: 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." +#~ "
" +#~ msgstr "" +#~ "此分頁上的變更需要您完全重新啟動 Adblock 服務後才能生效。
"
+#~ "p>"
+
+#~ msgid "DNS File Reset"
+#~ msgstr "DNS 檔案重設"
+
+#~ msgid ""
+#~ "List of supported and fully pre-configured adblock sources, already "
+#~ "active sources are pre-selected.
To avoid OOM errors, please "
+#~ "do not select too many lists!
List size information with "
+#~ "the respective domain ranges as follows:
• S "
+#~ "(-10k), M (10k-30k) and L (30k-80k) should work for 128 "
+#~ "MByte devices,
• XL (80k-200k) should work for "
+#~ "256-512 MByte devices,
• XXL (200k-) needs more "
+#~ "RAM and Multicore support, e.g. x86 or raspberry devices.
" +#~ "
" +#~ msgstr "" +#~ "Adblock 支援的來源清單(完全預先配置),預先選擇的來源已啟動。" + +#~ 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 報告,請按下「重新整理」按鈕以更新報告。" 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 58140badac..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 @@ -19,10 +19,13 @@ "/usr/sbin/logread -e adblock-": [ "exec" ], "/etc/init.d/adblock list" : [ "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"]