diff options
Diffstat (limited to 'applications/luci-app-adblock')
37 files changed, 1898 insertions, 1654 deletions
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 69c25d6dd4..23e346ed7d 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 @@ -1,8 +1,9 @@ 'use strict'; +'require view'; 'require fs'; 'require ui'; -return L.view.extend({ +return view.extend({ load: function() { return L.resolveDefault(fs.read_direct('/etc/adblock/adblock.blacklist'), ''); }, 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 58a6dbe1a9..3f3d233e20 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 @@ -1,4 +1,5 @@ 'use strict'; +'require view'; 'require fs'; 'require ui'; @@ -149,7 +150,7 @@ function handleAction(ev) { ]) ]), E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ - E('input', { 'class': 'cbi-input-text', 'id': 'search' }, [ + E('input', { 'class': 'cbi-input-text', 'spellcheck': 'false', 'id': 'search' }, [ ]), '\xa0\xa0\xa0', _('Filter criteria like date, domain or client (optional)') @@ -165,7 +166,7 @@ function handleAction(ev) { 'id': 'refresh', 'click': ui.createHandlerFn(this, async function(ev) { var count = document.getElementById('count').value; - var search = document.getElementById('search').value.trim().replace(/[^a-z0-9\.\-]/g,'') || '+'; + var search = document.getElementById('search').value.trim().replace(/[^\w\.\-\:]/g,'') || '+'; L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', search, count, 'true', 'json']),''); var running = 1; while (running === 1) { @@ -186,7 +187,7 @@ function handleAction(ev) { } } -return L.view.extend({ +return view.extend({ load: function() { return L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', '+', '50', 'false', 'json']),''); }, @@ -293,6 +294,8 @@ return L.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', '\xa0'), E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Start Date')), E('div', { 'class': 'cbi-value-field', 'id': 'start', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.start_date || '-') + ', ' + (content.data.start_time || '-'))]), diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js index 64f23b14c8..4dc2a2e533 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js @@ -1,7 +1,9 @@ 'use strict'; +'require view'; +'require poll'; 'require fs'; -return L.view.extend({ +return view.extend({ load: function() { return Promise.all([ L.resolveDefault(fs.stat('/sbin/logread'), null), @@ -10,7 +12,7 @@ return L.view.extend({ }, render: function(stat) { var logger = stat[0] ? stat[0].path : stat[1] ? stat[1].path : null; - L.Poll.add(function() { + poll.add(function() { return L.resolveDefault(fs.exec_direct(logger, ['-e', 'adblock-'])).then(function(res) { var log = document.getElementById("logfile"); if (res) { 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 4c20c48ec3..5d4eca53a6 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 @@ -1,4 +1,6 @@ 'use strict'; +'require view'; +'require poll'; 'require fs'; 'require ui'; 'require uci'; @@ -98,7 +100,7 @@ async function handleAction(ev) { } } - L.Poll.start(); + poll.start(); fs.exec_direct('/etc/init.d/adblock', [ev]) var running = 1; while (running === 1) { @@ -109,10 +111,10 @@ async function handleAction(ev) { } }) } - L.Poll.stop(); + poll.stop(); } -return L.view.extend({ +return view.extend({ load: function() { return Promise.all([ L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['list']), {}), @@ -129,7 +131,7 @@ return L.view.extend({ /* poll runtime information */ - pollData: L.Poll.add(function() { + pollData: poll.add(function() { return L.resolveDefault(fs.read_direct('/tmp/adb_runtime.json'), 'null').then(function(res) { var info = JSON.parse(res); var status = document.getElementById('status'); @@ -142,7 +144,7 @@ return L.view.extend({ } else { if (status.classList.contains("spinning")) { status.classList.remove("spinning"); - L.Poll.stop(); + poll.stop(); } } if (status.textContent.substr(0,6) === 'paused' && document.getElementById('btn_suspend')) { diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js index 6fc14becad..68c6644fb3 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js @@ -1,8 +1,9 @@ 'use strict'; +'require view'; 'require fs'; 'require ui'; -return L.view.extend({ +return view.extend({ load: function() { return L.resolveDefault(fs.read_direct('/etc/adblock/adblock.whitelist'), ''); }, diff --git a/applications/luci-app-adblock/po/bg/adblock.po b/applications/luci-app-adblock/po/bg/adblock.po index 0e29e9270e..6469361409 100644 --- a/applications/luci-app-adblock/po/bg/adblock.po +++ b/applications/luci-app-adblock/po/bg/adblock.po @@ -37,7 +37,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -106,7 +106,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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,15 +154,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -172,15 +172,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -188,21 +188,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -227,11 +227,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -239,11 +239,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -291,11 +291,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -305,11 +305,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -340,11 +340,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -354,7 +354,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -406,7 +406,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -418,7 +418,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -458,39 +458,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -533,7 +533,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -551,7 +551,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -561,7 +561,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -569,7 +569,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -585,7 +585,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -597,11 +597,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -643,11 +643,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -657,11 +663,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -689,11 +695,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -701,14 +707,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 7196db8b17..9fd2342953 100644 --- a/applications/luci-app-adblock/po/ca/adblock.po +++ b/applications/luci-app-adblock/po/ca/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Fonts de la llista negra" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Directori del DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Reinicialització de fitxers del DNS" @@ -180,15 +180,15 @@ msgstr "Reinicialització de fitxers del DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "Utilitat de baixades" msgid "E-Mail Notification" msgstr "Notificació per correu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "Adreça de destinatari de correu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "Activat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Data de finalització" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Purga la memòria cau del DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "Darrera execució" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -414,7 +414,7 @@ msgstr "" msgid "Overview" msgstr "Visió de conjunt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -426,7 +426,7 @@ 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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -466,39 +466,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -541,7 +541,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -559,7 +559,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -569,7 +569,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -577,7 +577,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Data d’inici" @@ -593,7 +593,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -605,11 +605,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -651,11 +651,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -665,11 +671,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -697,11 +703,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -709,15 +715,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/cs/adblock.po b/applications/luci-app-adblock/po/cs/adblock.po index e00e13046d..9c6ec4de7d 100644 --- a/applications/luci-app-adblock/po/cs/adblock.po +++ b/applications/luci-app-adblock/po/cs/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Zdroje seznamů blokování" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -161,15 +161,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Adresář DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Resetování souboru DNS" @@ -179,15 +179,15 @@ msgstr "Resetování souboru DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -195,21 +195,21 @@ msgstr "" msgid "Date" msgstr "Datum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -234,11 +234,11 @@ msgstr "Nástroj pro stahování" msgid "E-Mail Notification" msgstr "Oznámení e-mailem" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -246,11 +246,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "Adresa příjemce e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -284,7 +284,7 @@ msgstr "" msgid "Enabled" msgstr "Zapnuto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Datum ukončení" @@ -298,11 +298,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -312,11 +312,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Vyprázdnit mezipaměť DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -339,7 +339,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "Last Run" msgstr "Poslední spuštění" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -361,7 +361,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -414,7 +414,7 @@ msgstr "" msgid "Overview" msgstr "Přehled" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -426,7 +426,7 @@ 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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -466,39 +466,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Počet bloků sestavy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Velikost bloků sestavy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Adresář sestav" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Rozhraní sestavy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -541,7 +541,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -559,7 +559,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -569,7 +569,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -577,7 +577,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Datum zahájení" @@ -593,7 +593,7 @@ msgstr "" msgid "Suspend" msgstr "Pozastavit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -605,11 +605,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -651,11 +651,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "Čas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -665,11 +671,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -697,11 +703,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -709,15 +715,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/de/adblock.po b/applications/luci-app-adblock/po/de/adblock.po index bd05519940..665174f2d6 100644 --- a/applications/luci-app-adblock/po/de/adblock.po +++ b/applications/luci-app-adblock/po/de/adblock.po @@ -43,7 +43,7 @@ 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:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "Zusätzliche Jail-Sperrliste" @@ -118,7 +118,7 @@ msgstr "Backup der Sperrliste" msgid "Blocklist Query" msgstr "Sperrlistenabfrage" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "Sperrlisten abfragen..." @@ -126,7 +126,7 @@ msgstr "Sperrlisten abfragen..." msgid "Blocklist Sources" msgstr "Blockierlisten-Quellen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -175,15 +175,15 @@ msgstr "" "sofort ab dem Booten oder im Fall von Downloadfehlern zur Verfügung zu haben." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "DNS-Backend" -#: 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:379 msgid "DNS Directory" msgstr "DNS-Verzeichnis" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "DNS-Datei zurücksetzen" @@ -193,15 +193,15 @@ msgstr "DNS-Datei zurücksetzen" msgid "DNS Report" msgstr "DNS-Report" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "(blockierte) DNS-Abfragen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "DNS-Abfragen (gesamt)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "DNS-Restart-Timeout" @@ -209,15 +209,15 @@ msgstr "DNS-Restart-Timeout" msgid "Date" msgstr "Datum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "Deaktiviere DNS-Zulassen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "Deaktiviere DNS-Restarts" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -225,7 +225,7 @@ msgstr "" "Deaktiviere das Triggern von Neustarts des DNS-Backends durch Adblock per " "Autoload/inotify-Funktionsaufrufe." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Deaktiviere selektives DNS-Whitelisting (RPZ-Passthrough)." @@ -250,11 +250,11 @@ msgstr "Download-Werkzeug" msgid "E-Mail Notification" msgstr "E-Mail-Benachrichtigung" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "Email-Benachrichtigszähler" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "Email-Profil" @@ -262,11 +262,11 @@ msgstr "Email-Profil" msgid "E-Mail Receiver Address" msgstr "E-Mail-Empfängeradresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "Email-Absenderadresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "Email-Betreff" @@ -300,7 +300,7 @@ msgstr "Aktiviere ausführliche Debug-Logs im Fehlerfall." msgid "Enabled" msgstr "Aktiviert" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Enddatum" @@ -314,11 +314,11 @@ msgstr "Erzwinge SafeSearch für Google, Bing, DuckDuckGo, Yandex und Pixabay." msgid "Existing job(s)" msgstr "Bestehende Job(s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "Externe DNS-Abfragedomain" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -330,11 +330,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" msgstr "Filterkriterien wie z.B. Datum, Domain oder Client (optional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397 msgid "Flush DNS Cache" msgstr "DNS-Cache leeren" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "DNS-Cache leeren, bevor mit Adblock-Verarbeitung fortgefahren wird." @@ -360,7 +360,7 @@ msgstr "Allgemeine Einstellungen" msgid "Information" msgstr "Informationen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "Jail-Verzeichnis" @@ -368,11 +368,11 @@ msgstr "Jail-Verzeichnis" msgid "Last Run" msgstr "Letzter Lauf" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "Letzte DNS-Abfragen" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" "Liste an verfügbaren Netzwerkschnittstellen die von tcpdump verwendet werden " @@ -387,7 +387,7 @@ msgstr "" "triggern. Wähle \"unspecified\", um einen herkömmlichen Start-Timeout-" "Mechanismuss anstatt eines Netzwerk-Triggers zu verwenden." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -452,7 +452,7 @@ msgstr "Aktuell noch keine Adblock-Logs vorhanden!" msgid "Overview" msgstr "Übersicht" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" "\"msmtp\"-Profil, das für Adblock-Benachrichtigunsmails verwendet wird." @@ -465,7 +465,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -512,39 +512,39 @@ msgstr "Aktualisiere Timer" msgid "Refresh Timer..." msgstr "Aktualisiere Timer..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "Aktualisiere..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Berichte Datenblock-Anzahl" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Berichte Datenblock-Größe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Verzeichnis für Berichte" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Berichte-Schnittstelle" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "Berichte Ports" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 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:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 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:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -592,7 +592,7 @@ 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:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "Absenderadresse für Adblock-Benachrichtigungsmails." @@ -612,7 +612,7 @@ 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:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "Quellen (Größe, Fokus)" @@ -624,7 +624,7 @@ msgstr "" "Leerzeichengetrennte Liste von DNS-relevanten Firewall-Ports, die zwingend " "lokal sein müssen." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "Leerzeichengetrennte Liste an Ports die von tcpdump genutzt werden." @@ -633,7 +633,7 @@ 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:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Startdatum" @@ -649,7 +649,7 @@ msgstr "Status / Version" msgid "Suspend" msgstr "Anhalten" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -667,11 +667,11 @@ msgstr "" "hier sollte besser ein USB-Stick oder anderer lokaler Speicher verwendet " "werden." -#: 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:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "Zielverzeichnis für die erzeugte Jail-Sperrliste \"adb_list.jail\"." @@ -721,11 +721,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:296 +msgid "" +"This 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:252 msgid "Time" msgstr "Zeit" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Timeout für erfolgreichen DNS-Backend-Startvorgang." @@ -737,11 +743,11 @@ 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:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "Top-10 Statistiken" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "Betreff für Adblock-Benachrichtigungsmails." @@ -771,11 +777,11 @@ msgstr "" msgid "Whitelist..." msgstr "Whiteliste..." -#: 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -783,15 +789,15 @@ 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:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" diff --git a/applications/luci-app-adblock/po/el/adblock.po b/applications/luci-app-adblock/po/el/adblock.po index 39afbfaa1a..38385d724f 100644 --- a/applications/luci-app-adblock/po/el/adblock.po +++ b/applications/luci-app-adblock/po/el/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -112,7 +112,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Λίστα Μπλοκαρισμένων πηγών" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -160,15 +160,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "κατάλογος DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Επαναφορά αρχείου DNS" @@ -178,15 +178,15 @@ msgstr "Επαναφορά αρχείου DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -194,21 +194,21 @@ msgstr "" msgid "Date" msgstr "Ημερομηνία" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -233,11 +233,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -245,11 +245,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -283,7 +283,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -297,11 +297,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -311,11 +311,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -338,7 +338,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -346,11 +346,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -360,7 +360,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -412,7 +412,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -424,7 +424,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -464,39 +464,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -539,7 +539,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -557,7 +557,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -567,7 +567,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -591,7 +591,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -603,11 +603,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -649,11 +649,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -663,11 +669,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -695,11 +701,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -707,15 +713,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/en/adblock.po b/applications/luci-app-adblock/po/en/adblock.po index 8a6f4257f0..3dcf94b0df 100644 --- a/applications/luci-app-adblock/po/en/adblock.po +++ b/applications/luci-app-adblock/po/en/adblock.po @@ -37,7 +37,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -106,7 +106,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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,15 +154,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -172,15 +172,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -188,21 +188,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -227,11 +227,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -239,11 +239,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -291,11 +291,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -305,11 +305,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -340,11 +340,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -354,7 +354,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -406,7 +406,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -418,7 +418,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -458,39 +458,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -533,7 +533,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -551,7 +551,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -561,7 +561,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -569,7 +569,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -585,7 +585,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -597,11 +597,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -643,11 +643,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -657,11 +663,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -689,11 +695,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -701,14 +707,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 7e1a35e838..095a28d9ef 100644 --- a/applications/luci-app-adblock/po/es/adblock.po +++ b/applications/luci-app-adblock/po/es/adblock.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-03-30 15:12+0000\n" +"PO-Revision-Date: 2020-04-13 14:11+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/es/>\n" @@ -46,7 +46,7 @@ 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:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "Lista de bloqueo adicional de la cárcel" @@ -121,7 +121,7 @@ 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:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "Consulta de lista de bloqueo..." @@ -129,7 +129,7 @@ msgstr "Consulta de lista de bloqueo..." msgid "Blocklist Sources" msgstr "Fuentes de lista de bloqueo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -179,15 +179,15 @@ msgstr "" "caso de errores de descarga o durante el inicio." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "Backend de DNS" -#: 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:379 msgid "DNS Directory" msgstr "Directorio DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Restablecimiento de archivos DNS" @@ -197,15 +197,15 @@ msgstr "Restablecimiento de archivos DNS" msgid "DNS Report" msgstr "Informe DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "Solicitudes DNS (bloqueadas)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "Solicitudes DNS (total)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "Tiempo de espera de reinicio de DNS" @@ -213,15 +213,15 @@ msgstr "Tiempo de espera de reinicio de DNS" msgid "Date" msgstr "Fecha" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "Desactivar Permitir DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "Desactivar Reinicios de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -229,7 +229,7 @@ msgstr "" "Desactivar los reinicios activados por adblock para back-end dns con " "funciones de carga automática/inotify." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Desactivar la lista blanca selectiva de DNS (pasar por RPZ)." @@ -254,11 +254,11 @@ msgstr "Utilidad de descarga" msgid "E-Mail Notification" msgstr "Notificación del E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "Conteo de notificaciones por E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "Perfil de E-Mail" @@ -266,11 +266,11 @@ msgstr "Perfil de E-Mail" msgid "E-Mail Receiver Address" msgstr "Dirección del destinatario del E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "Dirección del remitente del E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "Tema de E-Mail" @@ -306,7 +306,7 @@ msgstr "" msgid "Enabled" msgstr "Activado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Fecha final" @@ -322,11 +322,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Trabajo(s) existente(s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "Dominio de búsqueda de DNS externo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -339,11 +339,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" msgstr "Criterios de filtro como fecha, dominio o cliente (opcional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397 msgid "Flush DNS Cache" msgstr "Vaciar caché de DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Vacíe la caché de DNS antes del procesamiento de adblock también." @@ -370,7 +370,7 @@ msgstr "Configuración general" msgid "Information" msgstr "Información" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "Directorio de la cárcel" @@ -378,11 +378,11 @@ msgstr "Directorio de la cárcel" msgid "Last Run" msgstr "Último inicio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "Últimas solicitudes de DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "Lista de dispositivos de red disponibles utilizados por tcpdump." @@ -395,7 +395,7 @@ msgstr "" "Elija 'No especificado' para usar un tiempo de espera de inicio clásico en " "lugar de un disparador de red." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -459,7 +459,7 @@ msgstr "¡Aún no hay registros relacionados con adblock!" msgid "Overview" msgstr "Visión general" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Perfil utilizado por 'msmtp' para notificaciones de E-Mails adblock." @@ -473,7 +473,7 @@ msgstr "" "Consulta listas de bloqueo activas y copias de seguridad para un dominio " "específico." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -520,39 +520,39 @@ msgstr "Actualizar temporizador" msgid "Refresh Timer..." msgstr "Actualizar temporizador..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "Actualizar..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Informe de recuento de fragmentos" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Tamaño del fragmento de informe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Directorio de informes" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Interfaz de informe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "Informar puertos" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "Informe el recuento de fragmentos utilizado por tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "Informe el tamaño del fragmento utilizado por tcpdump en MByte." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -600,7 +600,7 @@ msgstr "" "Enviar correos electrónicos de notificación relacionados con adblock. Tenga " "en cuenta: esto necesita una instalación adicional del paquete 'msmtp'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" "Dirección del remitente para los correos electrónicos de notificación de " @@ -622,7 +622,7 @@ msgstr "" "Tamaño de la cola de descarga para el procesamiento de descarga (incluida la " "clasificación, fusión, etc.) en paralelo." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "Fuentes (tamaño, enfoque)" @@ -634,7 +634,7 @@ msgstr "" "Lista separada por espacios de puertos de firewall relacionados con DNS que " "deben forzarse localmente." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "Lista de puertos separados por espacios utilizados por tcpdump." @@ -644,7 +644,7 @@ msgstr "" "Opciones de configuración especiales para la utilidad de descarga " "seleccionada." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Fecha de inicio" @@ -660,7 +660,7 @@ msgstr "Estado / Versión" msgid "Suspend" msgstr "Suspender" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -678,12 +678,12 @@ msgstr "" "valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB u " "otro disco local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" "Directorio de destino para la lista de bloqueo generada 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" "Directorio de destino para la lista de bloqueo de cárcel generada 'adb_list." @@ -737,11 +737,19 @@ msgstr "" "línea. Los comentarios introducidos con '#' están permitidos; las " "direcciones IP, comodines y expresiones regulares no." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This shows the last generated DNS Report, press the refresh button to get a " +"current one." +msgstr "" +"Esto muestra el último Informe DNS generado, presione el botón Actualizar " +"para obtener uno actual." + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 msgid "Time" msgstr "Hora" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Tiempo de espera para esperar un reinicio de backend de DNS exitoso." @@ -753,11 +761,11 @@ msgstr "" "Para mantener sus listas de bloqueos de anuncios actualizadas, debe " "configurar un trabajo de actualización automática para estas listas." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "Top 10 estadísticas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "Tema para los correos electrónicos de notificación de adblock." @@ -787,11 +795,11 @@ msgstr "" msgid "Whitelist..." msgstr "Lista blanca..." -#: 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -799,15 +807,15 @@ msgstr "kresd (/etc/kresd)" msgid "max. result set size" msgstr "máx. tamaño del conjunto de resultados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "llamado (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "crudo (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" diff --git a/applications/luci-app-adblock/po/fr/adblock.po b/applications/luci-app-adblock/po/fr/adblock.po index 8ae58cee26..e0ce474510 100644 --- a/applications/luci-app-adblock/po/fr/adblock.po +++ b/applications/luci-app-adblock/po/fr/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -114,7 +114,7 @@ msgstr "Sauvegarde de la liste de blocage" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Sources des listes de blocage" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Répertoire du DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Réinitialiser le fichier de DNS" @@ -180,15 +180,15 @@ msgstr "Réinitialiser le fichier de DNS" msgid "DNS Report" msgstr "Rapport DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "Requêtes DNS (bloquées)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "Requêtes DNS (totales)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "Délai de redémarrage DNS" @@ -196,21 +196,21 @@ msgstr "Délai de redémarrage DNS" msgid "Date" msgstr "Date" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "Désactiver l'autorisation DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "Désactiver les redémarrages DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "Télécharger l'utilitaire" msgid "E-Mail Notification" msgstr "Notifications par e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "Adresse e-mail du destinataire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "Activé" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Date de fin" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Vider le cache DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "Paramètres généraux" msgid "Information" msgstr "Information" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "Dernière exécution" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -416,7 +416,7 @@ msgstr "" msgid "Overview" msgstr "Aperçu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -428,7 +428,7 @@ msgstr "Requête" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -470,39 +470,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Rapporter le nombre de morceaux" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Rapporter la taille des morceaux" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Rapporter le Répertoire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Rapporter l'Interface" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -545,7 +545,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -563,7 +563,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -573,7 +573,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -581,7 +581,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Date de début" @@ -597,7 +597,7 @@ msgstr "" msgid "Suspend" msgstr "Mettre en pause" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -609,12 +609,12 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -657,11 +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:296 +msgid "" +"This 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:252 msgid "Time" msgstr "Heure" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -671,11 +677,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -703,11 +709,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -715,15 +721,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/he/adblock.po b/applications/luci-app-adblock/po/he/adblock.po index 923340d5ed..5f597e4ef1 100644 --- a/applications/luci-app-adblock/po/he/adblock.po +++ b/applications/luci-app-adblock/po/he/adblock.po @@ -37,7 +37,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -106,7 +106,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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,15 +154,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -172,15 +172,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -188,21 +188,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -227,11 +227,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -239,11 +239,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -291,11 +291,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -305,11 +305,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -340,11 +340,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -354,7 +354,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -406,7 +406,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -418,7 +418,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -458,39 +458,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -533,7 +533,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -551,7 +551,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -561,7 +561,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -569,7 +569,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -585,7 +585,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -597,11 +597,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -643,11 +643,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -657,11 +663,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -689,11 +695,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -701,14 +707,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 3bd7c47b80..97d8e9d26f 100644 --- a/applications/luci-app-adblock/po/hi/adblock.po +++ b/applications/luci-app-adblock/po/hi/adblock.po @@ -37,7 +37,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -106,7 +106,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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,15 +154,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -172,15 +172,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -188,21 +188,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -227,11 +227,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -239,11 +239,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -291,11 +291,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -305,11 +305,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -340,11 +340,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -354,7 +354,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -406,7 +406,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -418,7 +418,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -458,39 +458,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -533,7 +533,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -551,7 +551,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -561,7 +561,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -569,7 +569,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -585,7 +585,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -597,11 +597,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -643,11 +643,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -657,11 +663,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -689,11 +695,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -701,14 +707,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 a4f8e6db89..b472179ab1 100644 --- a/applications/luci-app-adblock/po/hu/adblock.po +++ b/applications/luci-app-adblock/po/hu/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Blokkolási lista forrásai" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "DNS könyvtár" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "DNS fájlvisszaállítás" @@ -180,15 +180,15 @@ msgstr "DNS fájlvisszaállítás" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "Dátum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "Letöltési segédprogram" msgid "E-Mail Notification" msgstr "E-mail értesítés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "E-mail fogadócím" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "Engedélyezve" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Befejezési dátum" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "DNS gyorsítótár kiürítése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "Általános beállítások" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "Utolsó futás" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -415,7 +415,7 @@ msgstr "" msgid "Overview" msgstr "Áttekintés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -427,7 +427,7 @@ 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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -467,39 +467,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Darabok számának jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Darabok méretének jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Könyvtár jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Csatoló jelentése" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -542,7 +542,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -560,7 +560,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -570,7 +570,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -578,7 +578,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Kezdődátum" @@ -594,7 +594,7 @@ msgstr "" msgid "Suspend" msgstr "Felfüggesztés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -606,11 +606,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -654,11 +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:296 +msgid "" +"This 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:252 msgid "Time" msgstr "Idő" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -668,11 +674,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -700,11 +706,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -712,15 +718,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/it/adblock.po b/applications/luci-app-adblock/po/it/adblock.po index a7ad398d3e..c2ff20e490 100644 --- a/applications/luci-app-adblock/po/it/adblock.po +++ b/applications/luci-app-adblock/po/it/adblock.po @@ -46,7 +46,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -115,7 +115,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -123,7 +123,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Fonti lista di Blocco" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -163,15 +163,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Directory DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Reset File DNS" @@ -181,15 +181,15 @@ msgstr "Reset File DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -197,21 +197,21 @@ msgstr "" msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -236,11 +236,11 @@ msgstr "Utilità di Scaricamento" msgid "E-Mail Notification" msgstr "Notifica E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -248,11 +248,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "E-Mail destinatario" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -286,7 +286,7 @@ msgstr "" msgid "Enabled" msgstr "Abilitato" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Data Fine" @@ -300,11 +300,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -314,11 +314,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Pulisci Cache DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -341,7 +341,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -349,11 +349,11 @@ msgstr "" msgid "Last Run" msgstr "Ultimo Avvio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -363,7 +363,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -416,7 +416,7 @@ msgstr "" msgid "Overview" msgstr "Riassunto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -428,7 +428,7 @@ 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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -469,39 +469,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Directory dei report" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -544,7 +544,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -562,7 +562,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -572,7 +572,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -596,7 +596,7 @@ msgstr "" msgid "Suspend" msgstr "Sospendi" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -608,11 +608,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -655,11 +655,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -669,11 +675,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -701,11 +707,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -713,15 +719,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po index c604613716..6138fd57c5 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -44,7 +44,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "ブロックリスト提供元" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -161,15 +161,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "DNS ディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "DNS ファイル リセット" @@ -179,15 +179,15 @@ msgstr "DNS ファイル リセット" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -195,21 +195,21 @@ msgstr "" msgid "Date" msgstr "日付" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -234,11 +234,11 @@ msgstr "ダウンロード ユーティリティ" msgid "E-Mail Notification" msgstr "Eメール通知" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -246,11 +246,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "Eメール受信アドレス" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -284,7 +284,7 @@ msgstr "" msgid "Enabled" msgstr "有効" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "終了日" @@ -298,11 +298,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -312,11 +312,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "DNS キャッシュのクリア" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -339,7 +339,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "Last Run" msgstr "最終実行" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -361,7 +361,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -413,7 +413,7 @@ msgstr "" msgid "Overview" msgstr "概要" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -425,7 +425,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -465,39 +465,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "レポート チャンクカウント" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "レポート チャンクサイズ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "レポート ディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "レポート インターフェース" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -540,7 +540,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -558,7 +558,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -568,7 +568,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -576,7 +576,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "開始日" @@ -592,7 +592,7 @@ msgstr "" msgid "Suspend" msgstr "一時停止" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -604,11 +604,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -650,11 +650,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "時刻" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -664,11 +670,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -696,11 +702,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -708,15 +714,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/ko/adblock.po b/applications/luci-app-adblock/po/ko/adblock.po index 23ad3959e4..c118cc8e5f 100644 --- a/applications/luci-app-adblock/po/ko/adblock.po +++ b/applications/luci-app-adblock/po/ko/adblock.po @@ -37,7 +37,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -106,7 +106,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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,15 +154,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -172,15 +172,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -188,21 +188,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -227,11 +227,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -239,11 +239,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -291,11 +291,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -305,11 +305,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -340,11 +340,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -354,7 +354,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -406,7 +406,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -418,7 +418,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -458,39 +458,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -533,7 +533,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -551,7 +551,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -561,7 +561,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -569,7 +569,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -585,7 +585,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -597,11 +597,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -643,11 +643,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -657,11 +663,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -689,11 +695,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -701,14 +707,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 ed01336597..3f9bf92ac7 100644 --- a/applications/luci-app-adblock/po/mr/adblock.po +++ b/applications/luci-app-adblock/po/mr/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -112,7 +112,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -160,15 +160,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -178,15 +178,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -194,21 +194,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -233,11 +233,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -245,11 +245,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -283,7 +283,7 @@ msgstr "" msgid "Enabled" msgstr "सक्षम केले" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -297,11 +297,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -311,11 +311,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -338,7 +338,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -346,11 +346,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -360,7 +360,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -412,7 +412,7 @@ msgstr "" msgid "Overview" msgstr "आढावा" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -424,7 +424,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -464,39 +464,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -539,7 +539,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -557,7 +557,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -567,7 +567,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -591,7 +591,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -603,11 +603,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -649,11 +649,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -663,11 +669,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -695,11 +701,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -707,15 +713,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 065f08bf4c..9106a8e644 100644 --- a/applications/luci-app-adblock/po/ms/adblock.po +++ b/applications/luci-app-adblock/po/ms/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -112,7 +112,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Punca Senarai Sekatan" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -160,15 +160,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Direktori DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Reset fail DNS" @@ -178,15 +178,15 @@ msgstr "Reset fail DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -194,21 +194,21 @@ msgstr "" msgid "Date" msgstr "Tarikh" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -233,11 +233,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -245,11 +245,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -283,7 +283,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -297,11 +297,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -311,11 +311,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -338,7 +338,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -346,11 +346,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -360,7 +360,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -412,7 +412,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -424,7 +424,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -464,39 +464,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -539,7 +539,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -557,7 +557,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -567,7 +567,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -591,7 +591,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -603,11 +603,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -649,11 +649,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -663,11 +669,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -695,11 +701,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -707,15 +713,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/nb_NO/adblock.po b/applications/luci-app-adblock/po/nb_NO/adblock.po index f878132c61..19d3b9efb5 100644 --- a/applications/luci-app-adblock/po/nb_NO/adblock.po +++ b/applications/luci-app-adblock/po/nb_NO/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Blokklistekilder" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "DNS-mappe" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "DNS-filtilbakestilling" @@ -180,15 +180,15 @@ msgstr "DNS-filtilbakestilling" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "Dato" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "Nedlastingsverktøy" msgid "E-Mail Notification" msgstr "E-postmerknad" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "E-postmottagersadresse" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "Aktivert" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Sluttdato" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Tøm DNS-hurtiglageret" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "Sist kjørt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -414,7 +414,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -426,7 +426,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -466,39 +466,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -541,7 +541,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -559,7 +559,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -569,7 +569,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -577,7 +577,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -593,7 +593,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -605,11 +605,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -651,11 +651,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -665,11 +671,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -697,11 +703,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -709,15 +715,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/pl/adblock.po b/applications/luci-app-adblock/po/pl/adblock.po index ed971f4672..3f31cebf3b 100644 --- a/applications/luci-app-adblock/po/pl/adblock.po +++ b/applications/luci-app-adblock/po/pl/adblock.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-10 05:58+0000\n" +"PO-Revision-Date: 2020-04-19 00:53+0000\n" "Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/pl/>\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.0.2-dev\n" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Action" @@ -44,7 +44,7 @@ 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:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "Dodatkowa lista zablokowanych" @@ -119,7 +119,7 @@ msgstr "Kopia zapasowa listy zablokowanych" msgid "Blocklist Query" msgstr "Zapytanie do list blokujących" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "Zapytanie..." @@ -127,7 +127,7 @@ msgstr "Zapytanie..." msgid "Blocklist Sources" msgstr "Źródła list" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -177,15 +177,15 @@ msgstr "" "używane w przypadku błędów pobierania lub podczas uruchamiania." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "Zaplecze DNS" -#: 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:379 msgid "DNS Directory" msgstr "Katalog DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Resetuj plik DNS" @@ -195,15 +195,15 @@ msgstr "Resetuj plik DNS" msgid "DNS Report" msgstr "Raport DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "Żądania DNS (zablokowane)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "Żądania DNS (ogółem)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "Limit czasu restartu DNS" @@ -211,15 +211,15 @@ msgstr "Limit czasu restartu DNS" msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "Wyłącz pozwolenie na DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "Wyłącz restart DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -227,7 +227,7 @@ msgstr "" "Wyłącz wyzwalane restarty adblocka dla zaplecza DNS z funkcjami Autoload/" "Inotify." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Wyłącz selektywną białą listę DNS (RPZ)." @@ -252,11 +252,11 @@ msgstr "Narzędzie pobierania" msgid "E-Mail Notification" msgstr "Powiadomienie email" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "Licznik powiadomień email" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "Profil email" @@ -264,11 +264,11 @@ msgstr "Profil email" msgid "E-Mail Receiver Address" msgstr "Adres email odbiorcy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "Adres email nadawcy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "Temat email" @@ -296,13 +296,14 @@ msgstr "Włącz usługę adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:322 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "Włącz pełne rejestrowanie debugowania w przypadku błędów przetwarzania." +msgstr "" +"Włącz pełne rejestrowanie debugowania w przypadku błędów przetwarzania." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:282 msgid "Enabled" msgstr "Włączone" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Data końcowa" @@ -318,11 +319,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Istniejące zadania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "Zewnętrzna domena wyszukiwania DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -335,11 +336,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" msgstr "Kryteria filtrowania takie jak data, domena lub klient (opcjonalnie)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397 msgid "Flush DNS Cache" msgstr "Opróżnij pamięć podręczną DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Opróżnij pamięć podręczną DNS przed przetwarzaniem adblocka." @@ -365,7 +366,7 @@ msgstr "Ustawienia główne" msgid "Information" msgstr "Informacja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "Katalog więzienia" @@ -373,11 +374,11 @@ msgstr "Katalog więzienia" msgid "Last Run" msgstr "Ostatnie uruchomienie" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "Ostatnie zapytania DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "Lista dostępnych urządzeń sieciowych używanych przez tcpdump." @@ -390,7 +391,7 @@ msgstr "" "'nieokreślone', aby użyć klasycznego limitu czasu uruchamiania zamiast " "wyzwalacza sieciowego." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -412,13 +413,13 @@ msgstr "" "Lista obsługiwanych i w pełni skonfigurowanych źródeł adblock, niektóre " "aktywne źródła są wstępnie wybrane. <br /> <b> <em> Aby uniknąć błędów OOM, " "nie wybieraj zbyt wielu list! </em> </b> <br /> Informacje o rozmiarze dla " -"odpowiednich zakresów domen wyglądają w następujący sposób:<br /> " -"• <b>S</b> (-10k), <b>M</b> (10k-30k) i <b>L</b> (30k-80k) " -"powinny działać na urządzeniach z 128 MB pamięci RAM<br /> " -"• <b>XL</b> (80k-200k) powinny działać na urządzeniach z 256-512 " -"MB pamięci RAM,<br /> • <b>XXL</b> (200k-) wymagają więcej " -"pamięci RAM i obsługi wielordzeniowej, np. urządzenia x86 lub urządzenia " -"typu raspberry.<br /> <p> </p>" +"odpowiednich zakresów domen wyglądają w następujący sposób:<br /> •" +" <b>S</b> (-10k), <b>M</b> (10k-30k) i <b>L</b> (30k-80k) powinny " +"działać na urządzeniach z 128 MB pamięci RAM<br /> • <b>XL</b> " +"(80k-200k) powinny działać na urządzeniach z 256-512 MB pamięci RAM,<br /> " +"• <b>XXL</b> (200k-) wymagają więcej pamięci RAM i obsługi " +"wielordzeniowej, np. urządzenia x86 lub urządzenia typu raspberry.<br /> " +"<p> </p>" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:357 msgid "List of supported and fully pre-configured download utilities." @@ -455,7 +456,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:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Profil używany przez 'msmtp' do powiadamiania o blokadzie email." @@ -469,7 +470,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -515,39 +516,39 @@ msgstr "Odśwież Timer" msgid "Refresh Timer..." msgstr "Odświeżanie Timera..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "Odświeżanie..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Zgłoś liczbę fragmentów" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Zgłoś wielkość porcji" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Katalog raportów" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Interfejs raportowania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "Porty raportowania" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 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:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 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:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -594,7 +595,7 @@ msgstr "" "Wysyłaj powiadomienia email związane z adblock. Uwaga: wymaga to dodatkowej " "instalacji pakietu 'msmtp'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "Adres nadawcy dla powiadomień emailowych adblocka." @@ -614,7 +615,7 @@ 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:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "Źródła (wielkość, skupienie)" @@ -626,7 +627,7 @@ msgstr "" "Rozdzielona spacjami lista portów zapory związanych z DNS, które należy " "wymusić lokalnie." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "Rozdzielona spacjami lista portów używanych przez tcpdump." @@ -634,7 +635,7 @@ msgstr "Rozdzielona spacjami lista portów używanych przez tcpdump." 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:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Data rozpoczęcia" @@ -650,7 +651,7 @@ msgstr "Status/Wersja" msgid "Suspend" msgstr "Zawieś" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -666,14 +667,15 @@ msgstr "" "Katalog docelowy dla kopii zapasowych listy zablokowanych. Domyślnie jest to " "'/tmp', użyj najlepiej pamięci USB lub innego dysku lokalnego." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." -msgstr "Katalog docelowy dla wygenerowanej listy zablokowanych '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:70 msgid "The Refresh Timer could not been updated." @@ -718,16 +720,23 @@ msgid "" "<br /> Please note: add only one domain per line. Comments introduced with " "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" -"Jest to lokalna biała lista adblocka, aby zawsze zezwalać na niektóre " -"domeny.<br /> Uwaga: dodaj tylko jedną domenę na linię. Komentarze " -"wprowadzone z '#' są dozwolone - adresy ip, wildcards i regex nie są " -"dozwolone." +"Jest to lokalna biała lista adblocka, aby zawsze zezwalać na niektóre domeny." +"<br /> Uwaga: dodaj tylko jedną domenę na linię. Komentarze wprowadzone z " +"'#' są dozwolone - adresy ip, wildcards i regex nie są dozwolone." + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +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." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 msgid "Time" msgstr "Czas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Limit czasu oczekiwania na pomyślne ponowne uruchomienie zaplecza DNS." @@ -739,11 +748,11 @@ msgstr "" "Aby twoje listy były aktualne, powinieneś ustawić automatyczne zadanie " "aktualizacji dla tych list." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "Top 10" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "Temat dla powiadomień email adblocka." @@ -773,11 +782,11 @@ msgstr "" msgid "Whitelist..." msgstr "Biała lista ..." -#: 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -785,15 +794,15 @@ msgstr "kresd (/etc/kresd)" msgid "max. result set size" msgstr "maks. rozmiar zestawu wyników" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" diff --git a/applications/luci-app-adblock/po/pt/adblock.po b/applications/luci-app-adblock/po/pt/adblock.po index 61690f3b1f..863ca32a83 100644 --- a/applications/luci-app-adblock/po/pt/adblock.po +++ b/applications/luci-app-adblock/po/pt/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Origem da Blocklist" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Diretório DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Repor o ficheiro DNS" @@ -180,15 +180,15 @@ msgstr "Repor o ficheiro DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "Ferramenta para descarregar" msgid "E-Mail Notification" msgstr "Notificação por e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "Endereço do destinatário de e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Data final" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Limpar o cache de DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "Configurações Gerais" msgid "Information" msgstr "Informação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -416,7 +416,7 @@ msgstr "" msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -428,7 +428,7 @@ 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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -468,39 +468,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Relatar Contagem de Porções" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Tamanho de Porções de Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Diretório de Relatórios" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Interface de Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -543,7 +543,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -561,7 +561,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -571,7 +571,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -579,7 +579,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Data de Início" @@ -595,7 +595,7 @@ msgstr "" msgid "Suspend" msgstr "Suspender" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -607,12 +607,12 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -656,11 +656,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "Tempo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -670,11 +676,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -702,11 +708,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -714,15 +720,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/pt_BR/adblock.po b/applications/luci-app-adblock/po/pt_BR/adblock.po index 17489fa90b..6dd4bf33d0 100644 --- a/applications/luci-app-adblock/po/pt_BR/adblock.po +++ b/applications/luci-app-adblock/po/pt_BR/adblock.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-03-29 07:02+0000\n" +"PO-Revision-Date: 2020-04-13 14:11+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsadblock/pt_BR/>\n" @@ -46,7 +46,7 @@ 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:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "Lista de Bloqueio Adicional" @@ -122,7 +122,7 @@ 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:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "Pesquisando a Lista de Bloqueio..." @@ -130,7 +130,7 @@ msgstr "Pesquisando a Lista de Bloqueio..." msgid "Blocklist Sources" msgstr "Fontes de listas de bloqueio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -180,15 +180,15 @@ msgstr "" "usados em caso de erros de download ou durante a inicialização." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "Infraestrutura do DNS" -#: 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:379 msgid "DNS Directory" msgstr "Diretório DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Zerar Arquivo de DNS" @@ -198,15 +198,15 @@ msgstr "Zerar Arquivo de DNS" msgid "DNS Report" msgstr "Relatório do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "Solicitações do DNS (bloqueadas)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "Solicitações do DNS (total)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "Tempo Limite para Reiniciar o DNS" @@ -214,15 +214,15 @@ msgstr "Tempo Limite para Reiniciar o DNS" msgid "Date" msgstr "Dia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "Desativar a opção DNS Permitir" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "Desativar as Reinicializações do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." @@ -230,7 +230,7 @@ msgstr "" "Desative o bloqueador de anúncios que causar a reinicialização das funções " "autoload/inotify da infraestrutura do DNS." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "Desative a lista branca seletiva do DNS (passagem pelo RPZ)." @@ -255,11 +255,11 @@ msgstr "Ferramenta para Baixar" msgid "E-Mail Notification" msgstr "Notificação por E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "Contagem de Notificações por E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "Perfil de E-Mail" @@ -267,11 +267,11 @@ msgstr "Perfil de E-Mail" msgid "E-Mail Receiver Address" msgstr "Endereço de E-Mail do Destinatário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "Endereço de E-Mail do Remetente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "Assunto do E-Mail" @@ -307,7 +307,7 @@ msgstr "" msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Data Final" @@ -323,11 +323,11 @@ msgstr "" msgid "Existing job(s)" msgstr "Tarefa(s) existente(s)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "Domínio de Pesquisa Externa do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -340,11 +340,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" msgstr "Filtrar critérios como data, domínio ou cliente (opcional)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397 msgid "Flush DNS Cache" msgstr "Limpar a Cache do DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "Também liberar o Cache do DNS antes do bloqueador de anúncios." @@ -371,7 +371,7 @@ msgstr "Configurações Gerais" msgid "Information" msgstr "Informações" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "Diretório Prisional" @@ -379,11 +379,11 @@ msgstr "Diretório Prisional" msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "As últimas solicitações do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" "Lista de dispositivos da rede disponíveis que foram usados pelo tcpdump." @@ -397,7 +397,7 @@ msgstr "" "Escolha 'não especificado' para usar um tempo de inicialização clássico em " "vez de um gatilho de rede." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -462,7 +462,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:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 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 " @@ -478,7 +478,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -528,39 +528,39 @@ msgstr "Atualizar Temporizador" msgid "Refresh Timer..." msgstr "Atualizando o Temporizador..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "Atualizar..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Contagem de Pedaços do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Tamanho dos Pedaços do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Diretório do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Interface do Relatório" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "Relatório das Portas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 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:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 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:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -608,7 +608,7 @@ 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:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" "Endereço E-Mail do remetente para as notificações do bloqueador de anúncios." @@ -629,7 +629,7 @@ 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:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "Fontes (Tamanho, Foco)" @@ -641,7 +641,7 @@ msgstr "" "Lista separada por espaço das portas de firewall relacionadas ao DNS que " "devem ser impostas localmente." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "Lista separada por espaço das portas utilizadas pelo tcpdump." @@ -650,7 +650,7 @@ 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:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Data de Início" @@ -666,7 +666,7 @@ msgstr "Condição Geral / Versão" msgid "Suspend" msgstr "Suspender" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -684,11 +684,11 @@ msgstr "" "diretório predefinido é '/tmp', use preferencialmente um pendrive ou outro " "disco local." -#: 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:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 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 " @@ -741,11 +741,19 @@ msgstr "" "Comentários introduzidos com '#' são permitidos - endereços ip, curingas e " "regex não são." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +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." + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 msgid "Time" msgstr "Tempo" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Tempo limite para aguardar o reinício bem sucedido do DNS." @@ -757,11 +765,11 @@ 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:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "As 10 Estatísticas Principais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" "Defina o assunto dos E-Mais que serão usados nas notificações do bloqueador " @@ -793,11 +801,11 @@ msgstr "" msgid "Whitelist..." msgstr "Lista Branca..." -#: 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -805,15 +813,15 @@ 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:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "named (/var/lib/bind)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" diff --git a/applications/luci-app-adblock/po/ro/adblock.po b/applications/luci-app-adblock/po/ro/adblock.po index ba7c8a91f1..31c7f0729e 100644 --- a/applications/luci-app-adblock/po/ro/adblock.po +++ b/applications/luci-app-adblock/po/ro/adblock.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-03-29 12:19+0000\n" -"Last-Translator: Cristian Ionescu <joker_op@yahoo.com>\n" +"PO-Revision-Date: 2020-04-13 14:11+0000\n" +"Last-Translator: Danut Vornicu <ovisadang@yahoo.com>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/ro/>\n" "Language: ro\n" @@ -17,7 +17,7 @@ msgstr "Actiune" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:214 msgid "Active Sources" -msgstr "" +msgstr "Surse Active" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:6 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3 @@ -26,31 +26,31 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:34 msgid "Adblock action" -msgstr "" +msgstr "Acțiune Adblock" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:10 msgid "Add Blacklist Domain" -msgstr "" +msgstr "Adăugare Listă Domenii Interzise" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:45 msgid "Add Whitelist Domain" -msgstr "" +msgstr "Adăugare Listă Domenii Admise" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11 msgid "Add this (sub-)domain to your local blacklist." -msgstr "" +msgstr "Adăugați acest (sub) domeniu în lista locală de interzise." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46 msgid "Add this (sub-)domain to your local whitelist." -msgstr "" +msgstr "Adăugați acest (sub) domeniu la lista locală de admise." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:267 msgid "Additional Settings" -msgstr "" +msgstr "Setări Suplimentare" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:330 msgid "Additional trigger delay in seconds before adblock processing begins." @@ -60,15 +60,15 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 msgid "Advanced DNS Settings" -msgstr "" +msgstr "Setări Avansate DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Setări Avansate E-Mail" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 msgid "Advanced Report Settings" -msgstr "" +msgstr "Setări Avansate Raport" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Answer" @@ -80,13 +80,15 @@ msgstr "Director copie de siguranţă" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Base Temp Directory" -msgstr "" +msgstr "Director Temporar de Bază" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." msgstr "" +"Director Temporar de Bază pentru toate operațiunile funcționale legate de " +"adblock, ex. descărcare, sortare, unire etc." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:14 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:33 @@ -94,10 +96,12 @@ msgid "" "Blacklist changes have been saved. Refresh your adblock lists that changes " "take effect." 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:280 msgid "Blacklist..." -msgstr "" +msgstr "Lista de Interzise..." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 msgid "Blocked Domain" @@ -105,30 +109,34 @@ msgstr "Domeniu blocat" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:211 msgid "Blocked Domains" -msgstr "" +msgstr "Domenii Blocate" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 msgid "Blocklist Backup" -msgstr "" +msgstr "Copie de Rezervă Pentru Lista de Blocate" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:80 msgid "Blocklist Query" -msgstr "" +msgstr "Interogare Lista de Blocare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." -msgstr "" +msgstr "Interogare Lista de Blocare..." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 msgid "Blocklist Sources" msgstr "Surse de blocare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " "blocklist e.g. for guest wifi or kidsafe configurations." msgstr "" +"Creează o listă de blocare DNS suplimentară pentru a bloca accesul la toate " +"domeniile, cu excepția celor enumerate în lista de admise. Vă rugăm să " +"rețineți: puteți utiliza această listă de blocare restrictivă, de ex. pentru " +"wifi-ul oaspeților sau configurațiile pentru copii." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:21 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:56 @@ -136,7 +144,7 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:161 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 msgid "Cancel" -msgstr "" +msgstr "Renunțare" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 msgid "Client" @@ -149,6 +157,10 @@ msgid "" "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Configurarea pachetului adblock pentru a bloca reclamele/domeniile abuzive " +"prin utilizarea DNS. Pentru informații suplimentare <a href=\"https://github." +"com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=\"" +"_blank\" rel=\"noreferrer noopener\" >verificați documentația online</a>" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:204 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 @@ -161,17 +173,19 @@ msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "" +"Creare copii de rezervă comprimate a listei de blocate, acestea vor fi " +"utilizate în cazul erorilor de descărcare sau în timpul pornirii." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Director DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -179,41 +193,43 @@ msgstr "" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:26 msgid "DNS Report" -msgstr "" +msgstr "Raport DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" -msgstr "" +msgstr "Cereri DNS (blocate)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" -msgstr "" +msgstr "Cereri DNS (total)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" -msgstr "" +msgstr "Timp Repornire DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:251 msgid "Date" msgstr "Data" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" -msgstr "" +msgstr "Dezactivare Permite DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" -msgstr "" +msgstr "Dezactivare Repornire DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" +"Dezactivează repornirile declanșate de adblock pentru backend-urile dns cu " +"funcții de autoîncărcare /notificare." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "" +msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 @@ -222,11 +238,11 @@ msgstr "Domeniu" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:364 msgid "Download Parameters" -msgstr "" +msgstr "Descărcare Parametri" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "Download Queue" -msgstr "" +msgstr "Coadă de Descărcare" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:357 msgid "Download Utility" @@ -236,25 +252,25 @@ msgstr "Utilitar descărcare" msgid "E-Mail Notification" msgstr "Notificare e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" -msgstr "" +msgstr "Număr de Notificări pe E-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" -msgstr "" +msgstr "Profil E-Mail" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Adresa E-Mail Expeditor" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" -msgstr "" +msgstr "Subiect E-Mail" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:9 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:34 @@ -268,25 +284,26 @@ msgstr "Editare listă albă" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "Enable SafeSearch" -msgstr "" +msgstr "Activare Căutare Sigură" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Enable moderate SafeSearch filters for youtube." -msgstr "" +msgstr "Activare filtre moderate SafeSearch pentru YouTube." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:282 msgid "Enable the adblock service." -msgstr "" +msgstr "Activare serviciu adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:322 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Activare înregistrare detaliată de depanare în cazul unor erori de procesare." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:282 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Data sfârşit" @@ -295,32 +312,37 @@ msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." msgstr "" +"Forțare căutare sigură pentru google, bing, duckduckgo, yandex, youtube și " +"pixbay." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16 msgid "Existing job(s)" -msgstr "" +msgstr "Activitate(ăți) existentă(e)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" -msgstr "" +msgstr "Domeniul de căutare DNS extern" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." msgstr "" +"Domeniu extern pentru a verifica dacă a fost repornit cu succes un DNS. Vă " +"rugăm să rețineți: pentru a dezactiva această verificare, setați această " +"opțiune pe „falsă”." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:155 msgid "Filter criteria like date, domain or client (optional)" -msgstr "" +msgstr "Criterii de filtrare precum dată, domeniu sau client (opțional)" -#: 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:397 msgid "Flush DNS Cache" msgstr "Eliberează cache-ul DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." -msgstr "" +msgstr "Spălare memoria cache DNS înainte de procesarea adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:291 msgid "Force Local DNS" @@ -332,6 +354,10 @@ msgid "" "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" +"Adunare trafic de rețea aferent DNS prin tcpdump și realizare raport DNS la " +"cerere. Vă rugăm să rețineți: aceasta necesită instalare suplimentară a " +"pachetului „tcpdump-mini” și o repornire completă a serviciului de blocare, " +"pentru a avea efect." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 msgid "General Settings" @@ -339,35 +365,40 @@ msgstr "Setări generale" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:206 msgid "Information" -msgstr "" +msgstr "Informare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" -msgstr "" +msgstr "Director Închisoare" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:232 msgid "Last Run" msgstr "Ultima rulare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" -msgstr "" +msgstr "Ultimele Cereri DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." -msgstr "" +msgstr "Lista dispozitivelor de rețea utilizate de tcpdump." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:285 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" +"Lista interfețelor de rețea disponibile pentru a declanșa pornirea adblock. " +"Alegeți „nespecificat” pentru a utiliza un interval de timp de pornire " +"clasic în loc de declanșarea rețelei." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" +"Lista DNS-urilor acceptate cu directorul lor al listelor implicite. Pentru a " +"rescrie calea implicită, utilizați opțiunea „Director DNS”." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271 msgid "" @@ -380,6 +411,15 @@ msgid "" "devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore " "support, e.g. x86 or raspberry devices.<br /> <p> </p>" msgstr "" +"Lista surselor acceptate și complet pre-configurate ale abdlock, surse deja " +"active sunt preselectate.<br /> <b><em>Pentru a evita erorile OOM, nu " +"selectați prea multe liste!</em></b><br /> Mărimea listei cu informații " +"despre domeniul respectiv variază astfel:<br /> • <b>S</b> (-10k)" +", <b>M</b> (10k-30k) și <b>L</b> (30k-80k) ar trebui să funcționeze pentru " +"dispozitive de 128 MByte,<br /> • <b>XL</b> (80k-200k) ar trebui " +"să funcționeze pentru dispozitivele de 256-512 MByte,<br /> " +"• <b>XXL</b> (200k-) au nevoie de dispozitive cu mai mult RAM și " +"suport Multicore, ex. x86 sau raspberry.<br /> <p> </p>" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:357 msgid "List of supported and fully pre-configured download utilities." @@ -387,12 +427,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:294 msgid "Local DNS Ports" -msgstr "" +msgstr "Porturi DNS Locale" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:11 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:50 msgid "Log View" -msgstr "" +msgstr "Vizualizare Jurnal" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 msgid "Low Priority Service" @@ -400,24 +440,24 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 msgid "Name / IP Address" -msgstr "" +msgstr "Nume / Adresă IP" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:122 msgid "No Query results!" -msgstr "" +msgstr "Nu există rezultate de interogare!" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:19 msgid "No adblock related logs yet!" -msgstr "" +msgstr "Nu există încă jurnale adblock!" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:7 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:18 msgid "Overview" msgstr "Prezentare generală" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." -msgstr "" +msgstr "Profil utilizat de „msmtp” pentru e-mailurile de notificare adblock." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:130 msgid "Query" @@ -426,12 +466,16 @@ msgstr "Interogare" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81 msgid "Query active blocklists and backups for a specific domain." 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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." 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:314 msgid "Receiver address for adblock notification e-mails." @@ -442,6 +486,8 @@ msgid "" "Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " "to UDP and TCP protocol." msgstr "" +"Redirecționare toate interogările DNS din zona „lan” către procesatorul DNS " +"local, se aplică protocolului UDP și TCP." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325 msgid "" @@ -449,6 +495,9 @@ msgid "" "resources from the system. Please note: This change requires a full adblock " "service restart to take effect." msgstr "" +"Reducere prioritatea procesării adblock în fundal, pentru a consuma mai " +"puține resurse din sistem. Vă rugăm să rețineți: această modificare necesită " +"o repornire completă a serviciului de blocare pentru a avea efect." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:182 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:255 @@ -457,7 +506,7 @@ msgstr "Reîmprospătare" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:137 msgid "Refresh DNS Report" -msgstr "" +msgstr "Actualizare Raport DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:13 msgid "Refresh Timer" @@ -467,39 +516,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -542,7 +591,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -560,7 +609,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -570,7 +619,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -578,7 +627,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Data de început" @@ -594,7 +643,7 @@ msgstr "" msgid "Suspend" msgstr "Suspendă" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -606,11 +655,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -652,11 +701,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -666,11 +721,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -698,11 +753,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -710,15 +765,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/ru/adblock.po b/applications/luci-app-adblock/po/ru/adblock.po index 721f696c29..e1a1936a54 100644 --- a/applications/luci-app-adblock/po/ru/adblock.po +++ b/applications/luci-app-adblock/po/ru/adblock.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: adblock\n" "POT-Creation-Date: 2017-10-22 13:00+0300\n" -"PO-Revision-Date: 2020-04-05 16:31+0000\n" -"Last-Translator: sergio <sergio+it@outerface.net>\n" +"PO-Revision-Date: 2020-04-19 00:53+0000\n" +"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsadblock/ru/>\n" "Language: ru\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.0.2-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" @@ -31,15 +31,13 @@ msgstr "Adblock Блокировщик рекламы" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:34 msgid "Adblock action" -msgstr "" +msgstr "Действие Adblock" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:10 -#, fuzzy msgid "Add Blacklist Domain" msgstr "Добавить домен в черный список" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:45 -#, fuzzy msgid "Add Whitelist Domain" msgstr "Добавить домен в белый список" @@ -51,9 +49,9 @@ msgstr "Добавить (под-)домен в ваш локальный чер msgid "Add this (sub-)domain to your local whitelist." msgstr "Добавить (под-)домен в ваш локальный белый список." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" -msgstr "" +msgstr "Дополнительный тюремный блоклист" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:267 msgid "Additional Settings" @@ -73,7 +71,7 @@ msgstr "Расширенные настройки электронной поч #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269 msgid "Advanced Report Settings" -msgstr "" +msgstr "Расширенные настройки отчетов" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 msgid "Answer" @@ -85,7 +83,7 @@ msgstr "Папка для резервных копий" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Base Temp Directory" -msgstr "" +msgstr "Базовый временный каталог" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "" @@ -121,11 +119,10 @@ msgid "Blocklist Backup" msgstr "Бэкап черного списка" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:80 -#, fuzzy msgid "Blocklist Query" msgstr "Блокировка запросов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 #, fuzzy msgid "Blocklist Query..." msgstr "Заблокировать запрос..." @@ -135,7 +132,7 @@ msgstr "Заблокировать запрос..." msgid "Blocklist Sources" msgstr "Источники черных списков" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 #, fuzzy msgid "" "Builds an additional DNS blocklist to block access to all domains except " @@ -168,9 +165,9 @@ msgid "" "noopener\" >check the online documentation</a>" msgstr "" "Конфигурация AdBlock-а для блокировки рекламных/мошеннических доменов с " -"помощью DNS. Чтобы получить больше информации, прочитайте <a href=\"" -"https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md\"" -" target=\"_blank\" rel=\"noreferrer noopener\" >онлайн документацию</a>" +"помощью DNS. Чтобы получить больше информации, прочитайте <a href=\"https://" +"github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" +"\"_blank\" rel=\"noreferrer noopener\" >онлайн документацию</a>" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:204 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 @@ -187,15 +184,15 @@ msgstr "" "загрузкой или во время запуска." #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "Папка DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Сброс файла DNS" @@ -205,15 +202,15 @@ msgstr "Сброс файла DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -221,21 +218,21 @@ msgstr "" msgid "Date" msgstr "Дата" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -260,11 +257,11 @@ msgstr "Утилита для скачивания" msgid "E-Mail Notification" msgstr "Уведомление электронной почты" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -272,11 +269,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "Адрес получателя электронной почты" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -310,7 +307,7 @@ msgstr "" msgid "Enabled" msgstr "Включено" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Дата окончания" @@ -324,11 +321,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -338,11 +335,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Очистка кэша DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -365,7 +362,7 @@ msgstr "Основные настройки" msgid "Information" msgstr "Информация" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -373,11 +370,11 @@ msgstr "" msgid "Last Run" msgstr "Последний запуск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -387,7 +384,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -441,7 +438,7 @@ msgstr "" msgid "Overview" msgstr "Обзор" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -453,7 +450,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -493,39 +490,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "Количество фрагментов отчета" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "Размер фрагментов отчета" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "Папка для отчетов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "Отчет интерфейса" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -568,7 +565,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -578,7 +575,7 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:264 msgid "Settings" -msgstr "" +msgstr "Настройки" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 msgid "" @@ -586,7 +583,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -596,7 +593,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -604,7 +601,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "Дата начала" @@ -620,7 +617,7 @@ msgstr "" msgid "Suspend" msgstr "Приостановить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -632,11 +629,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -680,11 +677,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "Время" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -694,11 +697,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -726,11 +729,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -738,15 +741,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/sk/adblock.po b/applications/luci-app-adblock/po/sk/adblock.po index 0e917238a3..74bfdc4ac3 100644 --- a/applications/luci-app-adblock/po/sk/adblock.po +++ b/applications/luci-app-adblock/po/sk/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Zdroje zoznamov blokovaní" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "DNS adresár" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Inicializácia DNS súboru" @@ -180,15 +180,15 @@ msgstr "Inicializácia DNS súboru" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "Dátum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "Nástroj na sťahovanie" msgid "E-Mail Notification" msgstr "Upozornenie e-mailom" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "Adresa príjemcu e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "Zapnuté" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Koncový dátum" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Vyprázdniť medzipamäť DNS" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "Všeobecné nastavenia" msgid "Information" msgstr "Informácie" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -414,7 +414,7 @@ msgstr "" msgid "Overview" msgstr "Prehľad" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -426,7 +426,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -466,39 +466,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -541,7 +541,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -559,7 +559,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -569,7 +569,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -577,7 +577,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -593,7 +593,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -605,11 +605,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -651,11 +651,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -665,11 +671,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -697,11 +703,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -709,15 +715,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/sv/adblock.po b/applications/luci-app-adblock/po/sv/adblock.po index 4cba67bc8d..3cd129048f 100644 --- a/applications/luci-app-adblock/po/sv/adblock.po +++ b/applications/luci-app-adblock/po/sv/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Källor för blockeringslistor" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "DNS-mapp" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "DNS-filåterställning" @@ -180,15 +180,15 @@ msgstr "DNS-filåterställning" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "Datum" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "Ladda ner verktyget" msgid "E-Mail Notification" msgstr "E-postavisering" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "E-postmottagaradress" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "Aktiverad" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "Slutdatum" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "Töm DNS-cache" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "Kördes senast" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -414,7 +414,7 @@ msgstr "" msgid "Overview" msgstr "Översikt" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -426,7 +426,7 @@ msgstr "Fråga" msgid "Query active blocklists and backups for a specific domain." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -466,39 +466,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -541,7 +541,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -559,7 +559,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -569,7 +569,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -577,7 +577,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -593,7 +593,7 @@ msgstr "" msgid "Suspend" msgstr "Stäng av" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -605,11 +605,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -651,11 +651,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -665,11 +671,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -697,11 +703,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -709,15 +715,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index 97b489b1fb..eb4b5b1ebd 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -34,7 +34,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -103,7 +103,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -111,7 +111,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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,15 +151,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -169,15 +169,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -185,21 +185,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -224,11 +224,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -236,11 +236,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -274,7 +274,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -288,11 +288,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -302,11 +302,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -329,7 +329,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -337,11 +337,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -351,7 +351,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -403,7 +403,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -415,7 +415,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -455,39 +455,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -530,7 +530,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -548,7 +548,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -558,7 +558,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -566,7 +566,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -582,7 +582,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -594,11 +594,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -640,11 +640,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -654,11 +660,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -686,11 +692,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -698,14 +704,14 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 bf176fd398..3e330e4377 100644 --- a/applications/luci-app-adblock/po/tr/adblock.po +++ b/applications/luci-app-adblock/po/tr/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Engelleme Listesi Kaynakları" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -162,15 +162,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -180,15 +180,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -414,7 +414,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -426,7 +426,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -466,39 +466,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -541,7 +541,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -559,7 +559,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -569,7 +569,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -577,7 +577,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -593,7 +593,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -605,11 +605,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -651,11 +651,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -665,11 +671,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -697,11 +703,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -709,15 +715,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/uk/adblock.po b/applications/luci-app-adblock/po/uk/adblock.po index 4f8abeaff1..3d3578e209 100644 --- a/applications/luci-app-adblock/po/uk/adblock.po +++ b/applications/luci-app-adblock/po/uk/adblock.po @@ -44,7 +44,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -161,15 +161,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "" @@ -179,15 +179,15 @@ msgstr "" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -195,21 +195,21 @@ msgstr "" msgid "Date" msgstr "Дата" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -234,11 +234,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -246,11 +246,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -284,7 +284,7 @@ msgstr "" msgid "Enabled" msgstr "Увімкнено" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -298,11 +298,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -312,11 +312,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -339,7 +339,7 @@ msgstr "Загальні параметри" msgid "Information" msgstr "Інформація" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -361,7 +361,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -413,7 +413,7 @@ msgstr "" msgid "Overview" msgstr "Огляд" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -425,7 +425,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -465,39 +465,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -540,7 +540,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -558,7 +558,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -568,7 +568,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -576,7 +576,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -592,7 +592,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -604,11 +604,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -650,11 +650,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -664,11 +670,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -696,11 +702,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -708,15 +714,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 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 4d97730a3b..21998d7768 100644 --- a/applications/luci-app-adblock/po/vi/adblock.po +++ b/applications/luci-app-adblock/po/vi/adblock.po @@ -43,7 +43,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "Bộ lọc" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -161,16 +161,16 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 #, fuzzy msgid "DNS Directory" msgstr "Thư mục DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "Đặt lại tệp DNS" @@ -180,15 +180,15 @@ msgstr "Đặt lại tệp DNS" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -196,21 +196,21 @@ msgstr "" msgid "Date" msgstr "Ngày" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -235,11 +235,11 @@ msgstr "" msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "" @@ -299,11 +299,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -313,11 +313,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -362,7 +362,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -414,7 +414,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -426,7 +426,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -466,39 +466,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -541,7 +541,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -559,7 +559,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -569,7 +569,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -577,7 +577,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "" @@ -593,7 +593,7 @@ msgstr "" msgid "Suspend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -605,11 +605,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -651,11 +651,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "Thời gian" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -665,11 +671,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -698,11 +704,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -710,15 +716,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/zh_Hans/adblock.po b/applications/luci-app-adblock/po/zh_Hans/adblock.po index d39f500876..a70ca82afe 100644 --- a/applications/luci-app-adblock/po/zh_Hans/adblock.po +++ b/applications/luci-app-adblock/po/zh_Hans/adblock.po @@ -50,7 +50,7 @@ msgstr "添加此域名到本地黑名单" msgid "Add this (sub-)domain to your local whitelist." msgstr "添加此域名到本地白名单" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -119,7 +119,7 @@ msgstr "" msgid "Blocklist Query" msgstr "拦截列表查询" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -127,7 +127,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "拦截列表来源" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -167,15 +167,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "DNS 目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "DNS 文件重置" @@ -185,15 +185,15 @@ msgstr "DNS 文件重置" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -201,21 +201,21 @@ msgstr "" msgid "Date" msgstr "日期" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -240,11 +240,11 @@ msgstr "下载工具" msgid "E-Mail Notification" msgstr "E-Mail 通知" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -252,11 +252,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "E-Mail 收件人地址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -290,7 +290,7 @@ msgstr "" msgid "Enabled" msgstr "已启用" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "结束日期" @@ -304,11 +304,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -318,11 +318,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "清空 DNS 缓存" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -345,7 +345,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -353,11 +353,11 @@ msgstr "" msgid "Last Run" msgstr "最后运行" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -367,7 +367,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -419,7 +419,7 @@ msgstr "" msgid "Overview" msgstr "概览" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -431,7 +431,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -471,39 +471,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "报告区块计数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "报告区块大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "报告目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "报告接口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -546,7 +546,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -564,7 +564,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -574,7 +574,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -582,7 +582,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "开始日期" @@ -598,7 +598,7 @@ msgstr "" msgid "Suspend" msgstr "暂停" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -610,11 +610,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -656,11 +656,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "时间" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -670,11 +676,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -702,11 +708,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -714,15 +720,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/po/zh_Hant/adblock.po b/applications/luci-app-adblock/po/zh_Hant/adblock.po index 627a440283..43ee9d6889 100644 --- a/applications/luci-app-adblock/po/zh_Hant/adblock.po +++ b/applications/luci-app-adblock/po/zh_Hant/adblock.po @@ -49,7 +49,7 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 msgid "Additional Jail Blocklist" msgstr "" @@ -118,7 +118,7 @@ msgstr "" msgid "Blocklist Query" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316 msgid "Blocklist Query..." msgstr "" @@ -126,7 +126,7 @@ msgstr "" msgid "Blocklist Sources" msgstr "拉黑檔案清單" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 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 " @@ -166,15 +166,15 @@ msgid "" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:217 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "DNS Backend" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "DNS Directory" msgstr "DNS 目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "DNS File Reset" msgstr "DNS檔案重置" @@ -184,15 +184,15 @@ msgstr "DNS檔案重置" msgid "DNS Report" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308 msgid "DNS Requests (blocked)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305 msgid "DNS Requests (total)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "DNS Restart Timeout" msgstr "" @@ -200,21 +200,21 @@ msgstr "" msgid "Date" msgstr "日期" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable DNS Allow" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "Disable DNS Restarts" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400 msgid "Disable selective DNS whitelisting (RPZ pass through)." msgstr "" @@ -239,11 +239,11 @@ msgstr "下載實用程式" msgid "E-Mail Notification" msgstr "電子郵件通知" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "E-Mail Notification Count" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "E-Mail Profile" msgstr "" @@ -251,11 +251,11 @@ msgstr "" msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "E-Mail Topic" msgstr "" @@ -289,7 +289,7 @@ msgstr "" msgid "Enabled" msgstr "啟用" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302 msgid "End Date" msgstr "結束日期" @@ -303,11 +303,11 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "External DNS Lookup Domain" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -317,11 +317,11 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" 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:397 msgid "Flush DNS Cache" msgstr "清空 DNS 快取" -#: 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:397 msgid "Flush the DNS Cache before adblock processing as well." msgstr "" @@ -344,7 +344,7 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Jail Directory" msgstr "" @@ -352,11 +352,11 @@ msgstr "" msgid "Last Run" msgstr "最後執行" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335 msgid "Latest DNS Requests" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "List of available network devices used by tcpdump." msgstr "" @@ -366,7 +366,7 @@ msgid "" "'unspecified' to use a classic startup timeout instead of a network trigger." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -418,7 +418,7 @@ msgstr "" msgid "Overview" msgstr "概覽" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:454 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "" @@ -430,7 +430,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:463 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:458 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." @@ -470,39 +470,39 @@ msgstr "" msgid "Refresh Timer..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323 msgid "Refresh..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report Chunk Count" msgstr "報告區塊計數" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report Chunk Size" msgstr "報告區塊大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "Report Directory" msgstr "報告目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 msgid "Report Interface" msgstr "報告介面" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Report Ports" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 msgid "Report chunk count used by tcpdump." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434 msgid "Report chunk size used by tcpdump in MByte." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 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 " @@ -545,7 +545,7 @@ msgid "" "additional 'msmtp' package installation." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:446 msgid "Sender address for adblock notification E-Mails." msgstr "" @@ -563,7 +563,7 @@ msgid "" "etc.) in parallel." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466 msgid "Sources (Size, Focus)" msgstr "" @@ -573,7 +573,7 @@ msgid "" "locally." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439 msgid "Space separated list of ports used by tcpdump." msgstr "" @@ -581,7 +581,7 @@ msgstr "" msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299 msgid "Start Date" msgstr "開始日期" @@ -597,7 +597,7 @@ msgstr "" msgid "Suspend" msgstr "暫停" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:429 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "" "Target directory for DNS related report files. Default is '/tmp', please use " "preferably an usb stick or another local disk." @@ -609,11 +609,11 @@ msgid "" "preferably an usb stick or another local disk." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 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:412 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "" @@ -655,11 +655,17 @@ msgid "" "'#' are allowed - ip addresses, wildcards and regex are not." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296 +msgid "" +"This 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:252 msgid "Time" msgstr "時間" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383 msgid "Timeout to wait for a successful DNS backend restart." msgstr "" @@ -669,11 +675,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328 msgid "Top 10 Statistics" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:455 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450 msgid "Topic for adblock notification E-Mails." msgstr "" @@ -701,11 +707,11 @@ msgstr "" msgid "Whitelist..." 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:372 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 msgid "kresd (/etc/kresd)" msgstr "" @@ -713,15 +719,15 @@ msgstr "" msgid "max. result set size" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "named (/var/lib/bind)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 msgid "raw (/tmp)" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373 msgid "unbound (/var/lib/unbound)" msgstr "" diff --git a/applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json b/applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json index 6faede5b14..9f2659c1da 100644 --- a/applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json +++ b/applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json @@ -7,6 +7,7 @@ "path": "admin/services/adblock/overview" }, "depends": { + "acl": [ "luci-app-adblock" ], "fs": { "/usr/bin/adblock.sh": "executable", "/etc/init.d/adblock": "executable" 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 557e5328c3..3f52b7eea2 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 @@ -24,7 +24,8 @@ "/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 query *" : [ "exec" ] - } + }, + "uci": ["adblock"] } } } |