luci-app-adblock: update dns report page

* add search anchor to all listed domains on dns report page
* small wording changes & cosmetics
* update translations

Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
Dirk Brenken 2020-11-27 21:33:04 +01:00
parent c850608dcf
commit 1ae99ff8d6
No known key found for this signature in database
GPG key ID: 9D71CD547BFAE684
34 changed files with 1543 additions and 1366 deletions

View file

@ -12,7 +12,7 @@ function handleAction(ev) {
E('p', _('Add this (sub-)domain to your local blacklist.')), E('p', _('Add this (sub-)domain to your local blacklist.')),
E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [
E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [
E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'id': 'blacklist', 'value': ev.target.getAttribute('value') }, []) E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'spellcheck': 'false', 'id': 'blacklist', 'value': ev.target.getAttribute('value') }, [])
]) ])
]), ]),
E('div', { 'class': 'right' }, [ E('div', { 'class': 'right' }, [
@ -47,7 +47,7 @@ function handleAction(ev) {
E('p', _('Add this (sub-)domain to your local whitelist.')), E('p', _('Add this (sub-)domain to your local whitelist.')),
E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [
E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [
E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'id': 'whitelist', 'value': ev.target.getAttribute('value') }, []) E('input', { 'class': 'cbi-input-text', 'style': 'width:300px', 'spellcheck': 'false', 'id': 'whitelist', 'value': ev.target.getAttribute('value') }, [])
]) ])
]), ]),
E('div', { 'class': 'right' }, [ E('div', { 'class': 'right' }, [
@ -86,6 +86,7 @@ function handleAction(ev) {
'class': 'cbi-input-text', 'class': 'cbi-input-text',
'placeholder': 'google.com', 'placeholder': 'google.com',
'style': 'width:300px', 'style': 'width:300px',
'spellcheck': 'false',
'id': 'search' 'id': 'search'
}) })
]) ])
@ -227,13 +228,13 @@ return view.extend({
b_cnt = content.data.top_domains[i].count; b_cnt = content.data.top_domains[i].count;
} }
if (content.data.top_domains[i]) { if (content.data.top_domains[i]) {
b_addr = content.data.top_domains[i].address; b_addr = '<a href="https://duckduckgo.com/?q=' + encodeURIComponent(content.data.top_domains[i].address) + '&k1=-1&km=l&kh=1" target="_blank" title="Search this domain">' + content.data.top_domains[i].address + '</a>';
} }
if (content.data.top_blocked[i]) { if (content.data.top_blocked[i]) {
c_cnt = content.data.top_blocked[i].count; c_cnt = content.data.top_blocked[i].count;
} }
if (content.data.top_blocked[i]) { if (content.data.top_blocked[i]) {
c_addr = content.data.top_blocked[i].address; c_addr = '<a href="https://duckduckgo.com/?q=' + encodeURIComponent(content.data.top_blocked[i].address) + '&k1=-1&km=l&kh=1" target="_blank" title="Search this domain">' + content.data.top_blocked[i].address + '</a>';
} }
rows_top.push([ rows_top.push([
a_cnt, a_cnt,
@ -284,7 +285,7 @@ return view.extend({
content.data.requests[i].date, content.data.requests[i].date,
content.data.requests[i].time, content.data.requests[i].time,
content.data.requests[i].client, content.data.requests[i].client,
content.data.requests[i].domain, '<a href="https://duckduckgo.com/?q=' + encodeURIComponent(content.data.requests[i].domain) + '&k1=-1&km=l&kh=1" target="_blank" title="Search this domain">' + content.data.requests[i].domain + '</a>',
content.data.requests[i].rc, content.data.requests[i].rc,
button button
]); ]);
@ -297,16 +298,16 @@ return view.extend({
E('p', _('This shows the last generated DNS Report, press the refresh button to get a current one.')), E('p', _('This shows the last generated DNS Report, press the refresh button to get a current one.')),
E('p', '\xa0'), E('p', '\xa0'),
E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Start Date')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Start Timestamp')),
E('div', { 'class': 'cbi-value-field', 'id': 'start', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.start_date || '-') + ', ' + (content.data.start_time || '-'))]), E('div', { 'class': 'cbi-value-field', 'id': 'start', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.start_date || '-') + ', ' + (content.data.start_time || '-'))]),
E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('End Date')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('End Timestamp')),
E('div', { 'class': 'cbi-value-field', 'id': 'end', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.end_date || '-') + ', ' + (content.data.end_time || '-'))]), E('div', { 'class': 'cbi-value-field', 'id': 'end', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.end_date || '-') + ', ' + (content.data.end_time || '-'))]),
E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('DNS Requests (total)')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Total DNS Requests')),
E('div', { 'class': 'cbi-value-field', 'id': 'total', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, content.data.total || '-')]), E('div', { 'class': 'cbi-value-field', 'id': 'total', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, content.data.total || '-')]),
E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('DNS Requests (blocked)')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Blocked DNS Requests')),
E('div', { 'class': 'cbi-value-field', 'id': 'blocked', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.blocked || '-') + ' (' + (content.data.percent || '-') + ')')]), E('div', { 'class': 'cbi-value-field', 'id': 'blocked', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.blocked || '-') + ' (' + (content.data.percent || '-') + ')')]),
E('div', { 'class': 'right' }, [ E('div', { 'class': 'right' }, [
E('button', { E('button', {

View file

@ -11,7 +11,7 @@ msgstr ""
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.3.1\n" "X-Generator: Weblate 4.3.1\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "إجراء" msgstr "إجراء"
@ -68,7 +68,7 @@ msgstr "إعدادات متقدمة للبريد الالكتروني"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "إعدادات متقدمة للتقارير" msgstr "إعدادات متقدمة للتقارير"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "إجابة" msgstr "إجابة"
@ -97,11 +97,15 @@ msgstr ""
"تم حفظ التغييرات في القائمة السوداء. رجاء قم بتحديث قوائم أدبلوك الخاصة بك " "تم حفظ التغييرات في القائمة السوداء. رجاء قم بتحديث قوائم أدبلوك الخاصة بك "
"لتظهر التغييرات." "لتظهر التغييرات."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "القائمة السوداء..." msgstr "القائمة السوداء..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "نطاق محظور" msgstr "نطاق محظور"
@ -117,7 +121,7 @@ msgstr "نسخة احتياطية لقائمة الحظر"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "استعلام لقائمة الحظر" msgstr "استعلام لقائمة الحظر"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "استعلام لقائمة الحظر..." msgstr "استعلام لقائمة الحظر..."
@ -137,8 +141,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "إلغاء" msgstr "إلغاء"
@ -151,7 +155,7 @@ msgstr ""
"تحتاج التغييرات في علامة التبويب هذه إلى إعادة تشغيل خدمة أدبلوك كاملة حتى " "تحتاج التغييرات في علامة التبويب هذه إلى إعادة تشغيل خدمة أدبلوك كاملة حتى "
"تصبح نافذة المفعول.<br /><p>&#xa0;</p>" "تصبح نافذة المفعول.<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "العميل" msgstr "العميل"
@ -167,9 +171,9 @@ msgstr ""
"master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer "
"noopener\" > راجع المساعدة على الشبكة</a>" "noopener\" > راجع المساعدة على الشبكة</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "العدد" msgstr "العدد"
@ -198,19 +202,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -232,8 +228,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -303,8 +299,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "مفعل" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -327,7 +323,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -370,7 +366,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -427,11 +423,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -448,7 +444,7 @@ msgstr "نظرة عامة"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -479,12 +475,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -496,7 +492,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -539,7 +535,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -607,8 +603,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -681,13 +677,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -701,7 +697,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -709,6 +705,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -729,7 +729,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -741,7 +741,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -4,7 +4,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -61,7 +61,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -86,11 +86,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -106,7 +110,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -123,8 +127,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -135,7 +139,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -147,9 +151,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -178,19 +182,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -212,8 +208,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -283,8 +279,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -307,7 +303,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -350,7 +346,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -407,11 +403,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -428,7 +424,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -459,12 +455,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -476,7 +472,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -519,7 +515,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -587,8 +583,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -661,13 +657,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -681,7 +677,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -689,6 +685,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -709,7 +709,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -721,7 +721,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0.2\n" "X-Generator: Weblate 4.0.2\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -67,7 +67,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -92,11 +92,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -112,7 +116,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -129,8 +133,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -141,7 +145,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -153,9 +157,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -184,19 +188,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -218,8 +214,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -289,8 +285,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -313,7 +309,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -356,7 +352,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -413,11 +409,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -434,7 +430,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -465,12 +461,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -482,7 +478,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -525,7 +521,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -593,8 +589,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -667,13 +663,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -687,7 +683,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -695,6 +691,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -715,7 +715,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -727,7 +727,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.9.1-dev\n" "X-Generator: Weblate 3.9.1-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Acció" msgstr "Acció"
@ -69,7 +69,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Resposta" msgstr "Resposta"
@ -94,11 +94,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Domini blocat" msgstr "Domini blocat"
@ -114,7 +118,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -131,8 +135,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -143,7 +147,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -155,9 +159,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Recompte" msgstr "Recompte"
@ -186,19 +190,11 @@ msgstr "Reinicialització de fitxers del DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
@ -220,8 +216,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domini" msgstr "Domini"
@ -291,9 +287,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Activat" msgstr "Activat"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Data de finalització" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -315,7 +311,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -358,7 +354,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "Darrera execució" msgstr "Darrera execució"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -415,11 +411,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Servei de prioritat baixa" msgstr "Servei de prioritat baixa"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -436,7 +432,7 @@ msgstr "Visió de conjunt"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Consulta" msgstr "Consulta"
@ -467,12 +463,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Actualitza" msgstr "Actualitza"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -484,7 +480,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -527,7 +523,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -595,9 +591,9 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Data dinici" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -669,13 +665,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -689,7 +685,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -697,6 +693,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -717,7 +717,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -729,7 +729,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -745,6 +745,12 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "End Date"
#~ msgstr "Data de finalització"
#~ msgid "Start Date"
#~ msgstr "Data dinici"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.3.2-dev\n" "X-Generator: Weblate 4.3.2-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Akce" msgstr "Akce"
@ -68,7 +68,7 @@ msgstr "Pokročilá nastavení e-mailu"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Pokročilá nastavení hlášení" msgstr "Pokročilá nastavení hlášení"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Odpověd" msgstr "Odpověd"
@ -97,11 +97,15 @@ msgstr ""
"Změny blacklistu byly uloženy. Obnovte své adblockové seznamy, aby se změny " "Změny blacklistu byly uloženy. Obnovte své adblockové seznamy, aby se změny "
"projevily." "projevily."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Blacklist..." msgstr "Blacklist..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Blokované domény" msgstr "Blokované domény"
@ -117,7 +121,7 @@ msgstr "Záloha blokovacího seznamu"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Dotaz na blokovací seznam" msgstr "Dotaz na blokovací seznam"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Dotaz na blokovací seznam..." msgstr "Dotaz na blokovací seznam..."
@ -134,8 +138,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Storno" msgstr "Storno"
@ -146,7 +150,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -158,9 +162,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Počet" msgstr "Počet"
@ -191,19 +195,11 @@ msgstr "Resetování souboru DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
@ -225,8 +221,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Doména" msgstr "Doména"
@ -296,9 +292,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Zapnuto" msgstr "Zapnuto"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Datum ukončení" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -320,7 +316,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -363,7 +359,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "Poslední spuštění" msgstr "Poslední spuštění"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -421,11 +417,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Služba s nízkou prioritou" msgstr "Služba s nízkou prioritou"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Název / IP adresa" msgstr "Název / IP adresa"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "Žádné výsledky dotazu!" msgstr "Žádné výsledky dotazu!"
@ -442,7 +438,7 @@ msgstr "Přehled"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Dotaz" msgstr "Dotaz"
@ -473,12 +469,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Aktualizovat" msgstr "Aktualizovat"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -490,7 +486,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -533,7 +529,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -601,9 +597,9 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Datum zahájení" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -675,13 +671,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Čas" msgstr "Čas"
@ -695,7 +691,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -703,6 +699,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Prodleva spuštění" msgstr "Prodleva spuštění"
@ -723,7 +723,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -735,7 +735,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -751,6 +751,12 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "End Date"
#~ msgstr "Datum ukončení"
#~ msgid "Start Date"
#~ msgstr "Datum zahájení"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Aktion" msgstr "Aktion"
@ -69,7 +69,7 @@ msgstr "Fortgeschrittene E-Mail Einstellungen"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Fortgeschrittene Berichtseinstellungen" msgstr "Fortgeschrittene Berichtseinstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Antwort" msgstr "Antwort"
@ -98,11 +98,15 @@ msgstr ""
"Änderung der Blackliste gespeichert. Aktualisiere deine Adblock-Liste, um " "Änderung der Blackliste gespeichert. Aktualisiere deine Adblock-Liste, um "
"die Änderungen zu übernehmen." "die Änderungen zu übernehmen."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Blacklist..." msgstr "Blacklist..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Blockierte Domain" msgstr "Blockierte Domain"
@ -118,7 +122,7 @@ msgstr "Sperrliste Backup"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Sperrlistenabfrage" msgstr "Sperrlistenabfrage"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Sperrlisten abfragen..." msgstr "Sperrlisten abfragen..."
@ -138,8 +142,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
@ -152,7 +156,7 @@ msgstr ""
"Änderungen in diesem Tab benötigen einen kompletten Neustart des Adblock " "Änderungen in diesem Tab benötigen einen kompletten Neustart des Adblock "
"Dienstes, um wirksam zu werden.<br /><p>&#xa0;</p>" "Dienstes, um wirksam zu werden.<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -168,9 +172,9 @@ msgstr ""
"github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" "github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target="
"\"_blank\" rel=\"noreferrer noopener\" >Dokumentation</a>" "\"_blank\" rel=\"noreferrer noopener\" >Dokumentation</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Anzahl" msgstr "Anzahl"
@ -201,19 +205,11 @@ msgstr "DNS-Datei zurücksetzen"
msgid "DNS Report" msgid "DNS Report"
msgstr "DNS-Report" msgstr "DNS-Report"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNS Anforderungen (blockiert)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "DNS-Abfragen (gesamt)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS-Restart-Timeout" msgstr "DNS-Restart-Timeout"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
@ -237,8 +233,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Deaktiviere selektives DNS-Whitelisting (RPZ-Passthrough)." msgstr "Deaktiviere selektives DNS-Whitelisting (RPZ-Passthrough)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domäne" msgstr "Domäne"
@ -310,9 +306,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Aktiviert" msgstr "Aktiviert"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Enddatum" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -336,7 +332,7 @@ msgstr ""
"Externe Beispiel-Domain um einen erfolgreichen Neustart des DNS-Backend zu " "Externe Beispiel-Domain um einen erfolgreichen Neustart des DNS-Backend zu "
"prüfen. Auf \"false\" setzen, um dies zu deaktivieren." "prüfen. Auf \"false\" setzen, um dies zu deaktivieren."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Filterkriterien wie z.B. Datum, Domain oder Client (optional)" msgstr "Filterkriterien wie z.B. Datum, Domain oder Client (optional)"
@ -382,7 +378,7 @@ msgstr "Jail-Verzeichnis"
msgid "Last Run" msgid "Last Run"
msgstr "Letzter Lauf" msgstr "Letzter Lauf"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Letzte DNS-Abfragen" msgstr "Letzte DNS-Abfragen"
@ -457,11 +453,11 @@ msgstr "Protokollansicht"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Dienst mit niedriger Priorität" msgstr "Dienst mit niedriger Priorität"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Name / IP-Adresse" msgstr "Name / IP-Adresse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "Keine Abfrageergebnisse!" msgstr "Keine Abfrageergebnisse!"
@ -479,7 +475,7 @@ msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
"\"msmtp\"-Profil, das für Adblock-Benachrichtigunsmails verwendet wird." "\"msmtp\"-Profil, das für Adblock-Benachrichtigunsmails verwendet wird."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Abfrage" msgstr "Abfrage"
@ -517,12 +513,12 @@ msgstr ""
"des Systems zu verringern. Hinweis: Diese Änderung benötigt einen Neustart " "des Systems zu verringern. Hinweis: Diese Änderung benötigt einen Neustart "
"des Adblock-Dienstes um in Kraft zu treten." "des Adblock-Dienstes um in Kraft zu treten."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Aktualisieren" msgstr "Aktualisieren"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Aktualisiere DNS-Report" msgstr "Aktualisiere DNS-Report"
@ -534,7 +530,7 @@ msgstr "Aktualisiere Timer"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Aktualisiere Timer..." msgstr "Aktualisiere Timer..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Aktualisiere..." msgstr "Aktualisiere..."
@ -580,7 +576,7 @@ msgstr ""
"geladen hat zurück. Hinweis: Diese Option startet einen kleinen ubus/adblock-" "geladen hat zurück. Hinweis: Diese Option startet einen kleinen ubus/adblock-"
"Monitor im Hintergrund." "Monitor im Hintergrund."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Ergebnis" msgstr "Ergebnis"
@ -655,9 +651,9 @@ msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
"Spezielle Konfigurationseinstellungen für das gewählte Download-Programm." "Spezielle Konfigurationseinstellungen für das gewählte Download-Programm."
#: 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Startdatum" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -743,7 +739,7 @@ msgstr ""
"Kommentare mit # am Anfang ebenfalls, nicht jedoch IP-Adressen, Wildcards " "Kommentare mit # am Anfang ebenfalls, nicht jedoch IP-Adressen, Wildcards "
"und Regex-Ausdrücke." "und Regex-Ausdrücke."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
@ -751,7 +747,7 @@ msgstr ""
"Hier wird der zuletzt erzeugte DNS-Report angezeigt, um einen aktuelleren " "Hier wird der zuletzt erzeugte DNS-Report angezeigt, um einen aktuelleren "
"anzuzeigen, den Erneuern-Knopf drücken." "anzuzeigen, den Erneuern-Knopf drücken."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Zeit" msgstr "Zeit"
@ -767,7 +763,7 @@ msgstr ""
"Um die Adblock-Liste aktuell zu halten, sollte dafür ein automatischer " "Um die Adblock-Liste aktuell zu halten, sollte dafür ein automatischer "
"Update-Job eingerichtet werden." "Update-Job eingerichtet werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top-10 Statistiken" msgstr "Top-10 Statistiken"
@ -775,6 +771,10 @@ msgstr "Top-10 Statistiken"
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Betreff für Adblock-Benachrichtigungsmails." msgstr "Betreff für Adblock-Benachrichtigungsmails."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Verzögerung der Trigger-Bedingung" msgstr "Verzögerung der Trigger-Bedingung"
@ -797,7 +797,7 @@ msgstr ""
"Whitelist-Änderungen wurden gespeichert. Aktualisiere die Adblock-Listen um " "Whitelist-Änderungen wurden gespeichert. Aktualisiere die Adblock-Listen um "
"die Änderung anzuwenden." "die Änderung anzuwenden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Whiteliste..." msgstr "Whiteliste..."
@ -809,7 +809,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "Max. Größe des Result-Sets" msgstr "Max. Größe des Result-Sets"
@ -825,6 +825,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "DNS Anforderungen (blockiert)"
#~ msgid "DNS Requests (total)"
#~ msgstr "DNS-Abfragen (gesamt)"
#~ msgid "End Date"
#~ msgstr "Enddatum"
#~ msgid "Start Date"
#~ msgstr "Startdatum"
#~ msgid "SafeSearch Moderate" #~ msgid "SafeSearch Moderate"
#~ msgstr "moderates SafeSearch" #~ msgstr "moderates SafeSearch"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10-dev\n" "X-Generator: Weblate 3.10-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -67,7 +67,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -92,11 +92,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -112,7 +116,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -129,8 +133,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -141,7 +145,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "πελάτης" msgstr "πελάτης"
@ -153,9 +157,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Μέτρηση" msgstr "Μέτρηση"
@ -184,19 +188,11 @@ msgstr "Επαναφορά αρχείου DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Ημερομηνία" msgstr "Ημερομηνία"
@ -218,8 +214,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -289,8 +285,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -313,7 +309,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -356,7 +352,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -413,11 +409,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -434,7 +430,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -465,12 +461,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -482,7 +478,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -525,7 +521,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -593,8 +589,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -667,13 +663,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -687,7 +683,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -695,6 +691,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -715,7 +715,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -727,7 +727,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -67,7 +67,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -92,11 +92,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -112,7 +116,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -129,8 +133,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -141,7 +145,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -153,9 +157,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -184,19 +188,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -218,8 +214,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -289,8 +285,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Enabled" msgstr "Enabled"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -313,7 +309,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -356,7 +352,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -413,11 +409,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -434,7 +430,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -465,12 +461,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -482,7 +478,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -525,7 +521,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -593,8 +589,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -667,13 +663,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -687,7 +683,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -695,6 +691,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -715,7 +715,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -727,7 +727,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -13,7 +13,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3-dev\n" "X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Acción" msgstr "Acción"
@ -72,7 +72,7 @@ msgstr "Configuración avanzada de E-Mail"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Configuración avanzada de informes" msgstr "Configuración avanzada de informes"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Responder" msgstr "Responder"
@ -101,11 +101,15 @@ msgstr ""
"Se han guardado los cambios en la lista negra. Actualice sus listas de " "Se han guardado los cambios en la lista negra. Actualice sus listas de "
"bloqueos de anuncios para que los cambios surtan efecto." "bloqueos de anuncios para que los cambios surtan efecto."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Lista negra..." msgstr "Lista negra..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Dominio bloqueado" msgstr "Dominio bloqueado"
@ -121,7 +125,7 @@ msgstr "Copia de seguridad de lista de bloqueo"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Consulta de lista de bloqueo" msgstr "Consulta de lista de bloqueo"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Consulta de lista de bloqueo..." msgstr "Consulta de lista de bloqueo..."
@ -142,8 +146,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
@ -156,7 +160,7 @@ msgstr ""
"Los cambios en esta pestaña requieren un reninicio completo del servicio " "Los cambios en esta pestaña requieren un reninicio completo del servicio "
"adblock para que los cambios surtan efecto.<br /><p>&#xa0;</p>" "adblock para que los cambios surtan efecto.<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Cliente" msgstr "Cliente"
@ -172,9 +176,9 @@ msgstr ""
"openwrt/packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" " "openwrt/packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" "
"rel=\"noreferrer noopener\"> consulte la documentación en línea</a>" "rel=\"noreferrer noopener\"> consulte la documentación en línea</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Contar" msgstr "Contar"
@ -205,19 +209,11 @@ msgstr "Restablecimiento de archivos DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "Informe DNS" msgstr "Informe DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "Solicitudes DNS (bloqueadas)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "Solicitudes DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Tiempo de espera de reinicio de DNS" msgstr "Tiempo de espera de reinicio de DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Fecha" msgstr "Fecha"
@ -241,8 +237,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Desactivar la lista blanca selectiva de DNS (pasar por RPZ)." msgstr "Desactivar la lista blanca selectiva de DNS (pasar por RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Dominio" msgstr "Dominio"
@ -314,9 +310,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Activado" msgstr "Activado"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Fecha final" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -343,7 +339,7 @@ msgstr ""
"exitoso. Tenga en cuenta: para desactivar esta comprobación, configure esta " "exitoso. Tenga en cuenta: para desactivar esta comprobación, configure esta "
"opción en 'falso'." "opción en 'falso'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Criterios de filtro como fecha, dominio o cliente (opcional)" msgstr "Criterios de filtro como fecha, dominio o cliente (opcional)"
@ -390,7 +386,7 @@ msgstr "Directorio de la cárcel"
msgid "Last Run" msgid "Last Run"
msgstr "Último inicio" msgstr "Último inicio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Últimas solicitudes de DNS" msgstr "Últimas solicitudes de DNS"
@ -462,11 +458,11 @@ msgstr "Vista de registro"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Servicio con prioridad baja" msgstr "Servicio con prioridad baja"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Nombre / Dirección IP" msgstr "Nombre / Dirección IP"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "No hay resultados de consulta!" msgstr "No hay resultados de consulta!"
@ -483,7 +479,7 @@ msgstr "Visión general"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Perfil utilizado por 'msmtp' para notificaciones de E-Mails adblock." msgstr "Perfil utilizado por 'msmtp' para notificaciones de E-Mails adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Consulta" msgstr "Consulta"
@ -523,12 +519,12 @@ msgstr ""
"tomar menos recursos del sistema. Tenga en cuenta: este cambio requiere un " "tomar menos recursos del sistema. Tenga en cuenta: este cambio requiere un "
"reinicio completo del servicio adblock para que surta efecto." "reinicio completo del servicio adblock para que surta efecto."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Refrescar" msgstr "Refrescar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Actualizar informe DNS" msgstr "Actualizar informe DNS"
@ -540,7 +536,7 @@ msgstr "Actualizar temporizador"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Actualizar temporizador..." msgstr "Actualizar temporizador..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Actualizar..." msgstr "Actualizar..."
@ -586,7 +582,7 @@ msgstr ""
"carga del backend de DNS. Nota: esta opción inicia un pequeño monitor ubus/" "carga del backend de DNS. Nota: esta opción inicia un pequeño monitor ubus/"
"adblock en segundo plano." "adblock en segundo plano."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
@ -664,9 +660,9 @@ msgstr ""
"Opciones de configuración especiales para la utilidad de descarga " "Opciones de configuración especiales para la utilidad de descarga "
"seleccionada." "seleccionada."
#: 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Fecha de inicio" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -757,7 +753,7 @@ msgstr ""
"línea. Los comentarios introducidos con '#' están permitidos; las " "línea. Los comentarios introducidos con '#' están permitidos; las "
"direcciones IP, comodines y expresiones regulares no." "direcciones IP, comodines y expresiones regulares no."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
@ -765,7 +761,7 @@ msgstr ""
"Esto muestra el último Informe DNS generado, presione el botón Actualizar " "Esto muestra el último Informe DNS generado, presione el botón Actualizar "
"para obtener uno actual." "para obtener uno actual."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Hora" msgstr "Hora"
@ -781,7 +777,7 @@ msgstr ""
"Para mantener sus listas de bloqueos de anuncios actualizadas, debe " "Para mantener sus listas de bloqueos de anuncios actualizadas, debe "
"configurar un trabajo de actualización automática para estas listas." "configurar un trabajo de actualización automática para estas listas."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top 10 estadísticas" msgstr "Top 10 estadísticas"
@ -789,6 +785,10 @@ msgstr "Top 10 estadísticas"
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Tema para los correos electrónicos de notificación de adblock." msgstr "Tema para los correos electrónicos de notificación de adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Retraso de disparo" msgstr "Retraso de disparo"
@ -811,7 +811,7 @@ msgstr ""
"Se han guardado los cambios en la lista blanca. Actualice sus listas de " "Se han guardado los cambios en la lista blanca. Actualice sus listas de "
"bloqueos de anuncios para que los cambios surtan efecto." "bloqueos de anuncios para que los cambios surtan efecto."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Lista blanca..." msgstr "Lista blanca..."
@ -823,7 +823,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "máx. tamaño del conjunto de resultados" msgstr "máx. tamaño del conjunto de resultados"
@ -839,6 +839,18 @@ msgstr "crudo (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "Solicitudes DNS (bloqueadas)"
#~ msgid "DNS Requests (total)"
#~ msgstr "Solicitudes DNS (total)"
#~ msgid "End Date"
#~ msgstr "Fecha final"
#~ msgid "Start Date"
#~ msgstr "Fecha de inicio"
#~ msgid "SafeSearch Moderate" #~ msgid "SafeSearch Moderate"
#~ msgstr "SafeSearch Moderado" #~ msgstr "SafeSearch Moderado"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n" "X-Generator: Weblate 4.2-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Toiminta" msgstr "Toiminta"
@ -68,7 +68,7 @@ msgstr "Sähköpostin lisäasetukset"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Raportoinnin lisäasetukset" msgstr "Raportoinnin lisäasetukset"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Vastaus" msgstr "Vastaus"
@ -97,11 +97,15 @@ msgstr ""
"Kieltolistan muutokset on tallennettu. Virkistä adblock-listat ottaaksesi " "Kieltolistan muutokset on tallennettu. Virkistä adblock-listat ottaaksesi "
"muutokset käyttöön." "muutokset käyttöön."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Kieltolista..." msgstr "Kieltolista..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Estetty verkkonimi" msgstr "Estetty verkkonimi"
@ -117,7 +121,7 @@ msgstr "Kieltolistan varmuuskopio"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Estolistan kysely" msgstr "Estolistan kysely"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -134,8 +138,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Peruuta" msgstr "Peruuta"
@ -146,7 +150,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Asiakas" msgstr "Asiakas"
@ -158,9 +162,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Määrä" msgstr "Määrä"
@ -189,19 +193,11 @@ msgstr "DNS-tiedoston resetointi"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNS-kyselyt (estetyt)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS:n uudelleenkäynnistyksen aikaraja" msgstr "DNS:n uudelleenkäynnistyksen aikaraja"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Päivä" msgstr "Päivä"
@ -225,8 +221,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Verkkonimi" msgstr "Verkkonimi"
@ -296,9 +292,9 @@ msgstr "Runsas lokisisältö toimintojen virheiden etsimistä varten."
msgid "Enabled" msgid "Enabled"
msgstr "Käytössä" msgstr "Käytössä"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Päättymisaika" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -320,7 +316,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Suodatintekijät kuten päivä, verkkonimi tai asiakas (valinnainen)" msgstr "Suodatintekijät kuten päivä, verkkonimi tai asiakas (valinnainen)"
@ -363,7 +359,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "Viimeksi ajettu" msgstr "Viimeksi ajettu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Viimeiset DNS-kyselyt" msgstr "Viimeiset DNS-kyselyt"
@ -420,11 +416,11 @@ msgstr "Lokinäkymä"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Matala sovelluksen prioriteetti" msgstr "Matala sovelluksen prioriteetti"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Nimi / IP-osoite" msgstr "Nimi / IP-osoite"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "Ei kyselyn tuloksia!" msgstr "Ei kyselyn tuloksia!"
@ -441,7 +437,7 @@ msgstr "Yleiskatsaus"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Kysely" msgstr "Kysely"
@ -474,12 +470,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Päivitä" msgstr "Päivitä"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Päivitä DNS-raportti" msgstr "Päivitä DNS-raportti"
@ -491,7 +487,7 @@ msgstr "Päivitysajastin"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Päivitysajastin..." msgstr "Päivitysajastin..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Päivitä..." msgstr "Päivitä..."
@ -534,7 +530,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Tulos" msgstr "Tulos"
@ -602,8 +598,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -676,13 +672,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -696,7 +692,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -704,6 +700,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -724,7 +724,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -736,7 +736,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -751,3 +751,9 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "DNS Requests (blocked)"
#~ msgstr "DNS-kyselyt (estetyt)"
#~ msgid "End Date"
#~ msgstr "Päättymisaika"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Action" msgstr "Action"
@ -69,7 +69,7 @@ msgstr "Paramètres de messagerie électronique avancés"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Paramètres de rapport avancés" msgstr "Paramètres de rapport avancés"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Répondre" msgstr "Répondre"
@ -98,11 +98,15 @@ msgstr ""
"Changement Blacklist a été Sauvegarder. Rafraichir votre liste Adblock pour " "Changement Blacklist a été Sauvegarder. Rafraichir votre liste Adblock pour "
"que les chgmt prennent effet." "que les chgmt prennent effet."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Liste noire ..." msgstr "Liste noire ..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Domaines bloqués" msgstr "Domaines bloqués"
@ -118,7 +122,7 @@ msgstr "Sauvegarde de la liste de blocage"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Demande Blocklist" msgstr "Demande Blocklist"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Demande Blocklist..." msgstr "Demande Blocklist..."
@ -139,8 +143,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
@ -153,7 +157,7 @@ msgstr ""
"Les modifications de cet onglet nécessitent un redémarrage complet du " "Les modifications de cet onglet nécessitent un redémarrage complet du "
"service adblock pour prendre effet <br /> <p> &#xa0; </p>" "service adblock pour prendre effet <br /> <p> &#xa0; </p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -170,9 +174,9 @@ msgstr ""
"\"_blank\" rel=\"noreferrer noopener\" >consulter la documentation en ligne</" "\"_blank\" rel=\"noreferrer noopener\" >consulter la documentation en ligne</"
"a>" "a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Compteur" msgstr "Compteur"
@ -203,19 +207,11 @@ msgstr "Réinitialiser le fichier de DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "Rapport DNS" msgstr "Rapport DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "Requêtes DNS (bloquées)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "Requêtes DNS (totales)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Délai de redémarrage DNS" msgstr "Délai de redémarrage DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Date" msgstr "Date"
@ -239,8 +235,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Désactiver la liste blanche sélective du DNS (passthrough RPZ)." msgstr "Désactiver la liste blanche sélective du DNS (passthrough RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domaine" msgstr "Domaine"
@ -311,9 +307,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Activé" msgstr "Activé"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Date de fin" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -340,7 +336,7 @@ msgstr ""
"Remarque : Pour désactiver cette vérification, réglez cette option sur \"Faux" "Remarque : Pour désactiver cette vérification, réglez cette option sur \"Faux"
"\"." "\"."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Critère filtre comme la date, domaine, client (option)" msgstr "Critère filtre comme la date, domaine, client (option)"
@ -387,7 +383,7 @@ msgstr "Répertoire des bannis"
msgid "Last Run" msgid "Last Run"
msgstr "Dernière exécution" msgstr "Dernière exécution"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Dernière Requêtes DNS" msgstr "Dernière Requêtes DNS"
@ -462,11 +458,11 @@ msgstr "Vue du journal"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Service en priorité basse" msgstr "Service en priorité basse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Nom / Adresse IP" msgstr "Nom / Adresse IP"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "Pas de résultats de recherche !" msgstr "Pas de résultats de recherche !"
@ -483,7 +479,7 @@ msgstr "Vue densemble"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Profil utilisé par \"msmtp\" pour les e-mails de notification adblock." msgstr "Profil utilisé par \"msmtp\" pour les e-mails de notification adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Requête" msgstr "Requête"
@ -527,12 +523,12 @@ msgstr ""
"changement nécessite un redémarrage complet du service adblock pour prendre " "changement nécessite un redémarrage complet du service adblock pour prendre "
"effet." "effet."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Actualiser" msgstr "Actualiser"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Rafraîchir le rapport DNS" msgstr "Rafraîchir le rapport DNS"
@ -544,7 +540,7 @@ msgstr "Rafraichir Horloge"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Rafraîchir l'horloge..." msgstr "Rafraîchir l'horloge..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Rafraichi..." msgstr "Rafraichi..."
@ -590,7 +586,7 @@ msgstr ""
"chargement du backend DNS. Veuillez noter : Cette option démarre un petit " "chargement du backend DNS. Veuillez noter : Cette option démarre un petit "
"moniteur ubus/adblock en arrière-plan." "moniteur ubus/adblock en arrière-plan."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
@ -668,9 +664,9 @@ msgstr ""
"Options de configuration spéciales pour l'utilitaire de téléchargement " "Options de configuration spéciales pour l'utilitaire de téléchargement "
"sélectionné." "sélectionné."
#: 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Date de début" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -760,7 +756,7 @@ msgstr ""
"autorisés - les adresses IP, les caractères génériques et les expressions " "autorisés - les adresses IP, les caractères génériques et les expressions "
"rationnelles ne le sont pas." "rationnelles ne le sont pas."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
@ -768,7 +764,7 @@ msgstr ""
"Ceci montre le dernier rapport DNS généré, appuyez sur le bouton de " "Ceci montre le dernier rapport DNS généré, appuyez sur le bouton de "
"rafraîchissement pour en obtenir un actuel." "rafraîchissement pour en obtenir un actuel."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Heure" msgstr "Heure"
@ -784,7 +780,7 @@ msgstr ""
"Pour maintenir vos listes adblock à jour, vous devez configurer un travail " "Pour maintenir vos listes adblock à jour, vous devez configurer un travail "
"de mise à jour automatique de ces listes." "de mise à jour automatique de ces listes."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top 10 Statistiques" msgstr "Top 10 Statistiques"
@ -792,6 +788,10 @@ msgstr "Top 10 Statistiques"
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Objet pour les notifications par e-mails d'adblock." msgstr "Objet pour les notifications par e-mails d'adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Délai de déclenchement" msgstr "Délai de déclenchement"
@ -814,7 +814,7 @@ msgstr ""
"Les modifications apportées à la liste blanche sauvegardées. Rafraîchissez " "Les modifications apportées à la liste blanche sauvegardées. Rafraîchissez "
"adblock pour prise d'effet." "adblock pour prise d'effet."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Liste Blanche..." msgstr "Liste Blanche..."
@ -826,7 +826,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "taille max. des résultats" msgstr "taille max. des résultats"
@ -842,6 +842,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "Requêtes DNS (bloquées)"
#~ msgid "DNS Requests (total)"
#~ msgstr "Requêtes DNS (totales)"
#~ msgid "End Date"
#~ msgstr "Date de fin"
#~ msgid "Start Date"
#~ msgstr "Date de début"
#~ msgid "SafeSearch Moderate" #~ msgid "SafeSearch Moderate"
#~ msgstr "SafeSearch Modéré" #~ msgstr "SafeSearch Modéré"

View file

@ -4,7 +4,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -61,7 +61,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -86,11 +86,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -106,7 +110,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -123,8 +127,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -135,7 +139,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -147,9 +151,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -178,19 +182,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -212,8 +208,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -283,8 +279,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -307,7 +303,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -350,7 +346,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -407,11 +403,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -428,7 +424,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -459,12 +455,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -476,7 +472,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -519,7 +515,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -587,8 +583,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -661,13 +657,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -681,7 +677,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -689,6 +685,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -709,7 +709,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -721,7 +721,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -4,7 +4,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -61,7 +61,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -86,11 +86,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -106,7 +110,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -123,8 +127,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -135,7 +139,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -147,9 +151,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -178,19 +182,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -212,8 +208,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -283,8 +279,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -307,7 +303,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -350,7 +346,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -407,11 +403,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -428,7 +424,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -459,12 +455,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -476,7 +472,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -519,7 +515,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -587,8 +583,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -661,13 +657,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -681,7 +677,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -689,6 +685,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -709,7 +709,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -721,7 +721,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Művelet" msgstr "Művelet"
@ -69,7 +69,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Válasz" msgstr "Válasz"
@ -94,11 +94,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Blokkolt tartomány" msgstr "Blokkolt tartomány"
@ -114,7 +118,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -131,8 +135,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Mégse" msgstr "Mégse"
@ -143,7 +147,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Ügyfél" msgstr "Ügyfél"
@ -155,9 +159,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Darabszám" msgstr "Darabszám"
@ -186,19 +190,11 @@ msgstr "DNS fájlvisszaállítás"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Dátum" msgstr "Dátum"
@ -220,8 +216,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Tartomány" msgstr "Tartomány"
@ -291,9 +287,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Engedélyezve" msgstr "Engedélyezve"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Befejezési dátum" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -315,7 +311,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -358,7 +354,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "Utolsó futás" msgstr "Utolsó futás"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -416,11 +412,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Alacsony prioritású szolgáltatás" msgstr "Alacsony prioritású szolgáltatás"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -437,7 +433,7 @@ msgstr "Áttekintés"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Lekérdezés" msgstr "Lekérdezés"
@ -468,12 +464,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Frissítés" msgstr "Frissítés"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -485,7 +481,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -528,7 +524,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -596,9 +592,9 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Kezdődátum" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -672,13 +668,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Idő" msgstr "Idő"
@ -692,7 +688,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -700,6 +696,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Aktiváló késleltetése" msgstr "Aktiváló késleltetése"
@ -720,7 +720,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -732,7 +732,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -748,6 +748,12 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "End Date"
#~ msgstr "Befejezési dátum"
#~ msgid "Start Date"
#~ msgstr "Kezdődátum"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -13,7 +13,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Azione" msgstr "Azione"
@ -70,7 +70,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Risposta" msgstr "Risposta"
@ -95,11 +95,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Dominio bloccato" msgstr "Dominio bloccato"
@ -115,7 +119,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -132,8 +136,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -144,7 +148,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -156,9 +160,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Numero" msgstr "Numero"
@ -187,19 +191,11 @@ msgstr "Reset File DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
@ -221,8 +217,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Dominio" msgstr "Dominio"
@ -292,9 +288,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Abilitato" msgstr "Abilitato"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Data Fine" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -316,7 +312,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -359,7 +355,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "Ultimo Avvio" msgstr "Ultimo Avvio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -417,11 +413,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Serviio a bassa priorità" msgstr "Serviio a bassa priorità"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -438,7 +434,7 @@ msgstr "Riassunto"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Interrogazione" msgstr "Interrogazione"
@ -470,12 +466,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Ricaricare" msgstr "Ricaricare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -487,7 +483,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -530,7 +526,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -598,8 +594,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -673,13 +669,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -693,7 +689,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -701,6 +697,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Ritardo Innesco" msgstr "Ritardo Innesco"
@ -721,7 +721,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -733,7 +733,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -749,6 +749,9 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "End Date"
#~ msgstr "Data Fine"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -13,7 +13,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.3.2-dev\n" "X-Generator: Weblate 4.3.2-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "アクション" msgstr "アクション"
@ -70,7 +70,7 @@ msgstr "Eメールの詳細設定"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "リポートの詳細設定" msgstr "リポートの詳細設定"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "回答" msgstr "回答"
@ -98,11 +98,15 @@ msgid ""
msgstr "" msgstr ""
"ブラックリストへの変更が保存されました。adblockを更新して変更を適用します。" "ブラックリストへの変更が保存されました。adblockを更新して変更を適用します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "ブラックリスト..." msgstr "ブラックリスト..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "ブロックされたドメイン" msgstr "ブロックされたドメイン"
@ -118,7 +122,7 @@ msgstr "ブロックリストのバックアップ"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "ブロックリストのクエリ" msgstr "ブロックリストのクエリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "ブロックリストのクエリ..." msgstr "ブロックリストのクエリ..."
@ -138,8 +142,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "キャンセル" msgstr "キャンセル"
@ -152,7 +156,7 @@ msgstr ""
"このタブでの変更を適用するにはadblockサービスを完全に再起動する必要がありま" "このタブでの変更を適用するにはadblockサービスを完全に再起動する必要がありま"
"す。<br /><p>&#xa0;</p>" "す。<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "クライアント" msgstr "クライアント"
@ -168,9 +172,9 @@ msgstr ""
"files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >オンラインド" "files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >オンラインド"
"キュメント</a>を確認してください" "キュメント</a>を確認してください"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "カウント" msgstr "カウント"
@ -201,19 +205,11 @@ msgstr "DNS ファイル リセット"
msgid "DNS Report" msgid "DNS Report"
msgstr "DNSレポート" msgstr "DNSレポート"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNSリクエスト(ブロック)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "DNSリクエスト(合計)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS再起動タイムアウト" msgstr "DNS再起動タイムアウト"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "日付" msgstr "日付"
@ -237,8 +233,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "セレクティブDNSホワイトリスティングを無効化(RPZパススルー)。" msgstr "セレクティブDNSホワイトリスティングを無効化(RPZパススルー)。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "ドメイン" msgstr "ドメイン"
@ -308,9 +304,9 @@ msgstr "エラーが発生した際に詳細なデバッグロギングを有効
msgid "Enabled" msgid "Enabled"
msgstr "有効" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "終了日" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -336,7 +332,7 @@ msgstr ""
"DNSバックエンドが正常に再起動したかチェックする外部ドメイン。注意: このチェッ" "DNSバックエンドが正常に再起動したかチェックする外部ドメイン。注意: このチェッ"
"クを無効にするにはオプションを無効に設定してください。" "クを無効にするにはオプションを無効に設定してください。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "日付、ドメイン、クライアントなどのフィルター基準(オプション)" msgstr "日付、ドメイン、クライアントなどのフィルター基準(オプション)"
@ -382,7 +378,7 @@ msgstr "Jailディレクトリ"
msgid "Last Run" msgid "Last Run"
msgstr "最終実行" msgstr "最終実行"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "最新のDNSリクエスト" msgstr "最新のDNSリクエスト"
@ -443,11 +439,11 @@ msgstr "ログビュー"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "優先度が低いサービス" msgstr "優先度が低いサービス"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "名前 / IPアドレス" msgstr "名前 / IPアドレス"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "検索結果がありません!" msgstr "検索結果がありません!"
@ -464,7 +460,7 @@ msgstr "概要"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "'msmtp'をadblock通知Eメールに使用するプロファイル。" msgstr "'msmtp'をadblock通知Eメールに使用するプロファイル。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "検索" msgstr "検索"
@ -502,12 +498,12 @@ msgstr ""
"ます。注意: この変更を有効にするには、完全なadblockサービスの再起動が必要で" "ます。注意: この変更を有効にするには、完全なadblockサービスの再起動が必要で"
"す。" "す。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "リフレッシュ" msgstr "リフレッシュ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "DNSリポートをリフレッシュ" msgstr "DNSリポートをリフレッシュ"
@ -519,7 +515,7 @@ msgstr "タイマーをリフレッシュ"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "タイマーをリフレッシュ..." msgstr "タイマーをリフレッシュ..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "リフレッシュ..." msgstr "リフレッシュ..."
@ -565,7 +561,7 @@ msgstr ""
"セットします。注意: このオプションはバックグラウンドで小さなubus/adblockモニ" "セットします。注意: このオプションはバックグラウンドで小さなubus/adblockモニ"
"ターを起動します。" "ターを起動します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "結果" msgstr "結果"
@ -638,9 +634,9 @@ msgstr "tcpdumpが使用するポートの、スペースで区切られたリ
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "選択したダウンロードユーティリティーの特別な設定オプション。" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "開始日" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -724,7 +720,7 @@ msgstr ""
"す。<br /> 注意: 1行につきドメインを1つだけ追加してください。'#'で始まるコメ" "す。<br /> 注意: 1行につきドメインを1つだけ追加してください。'#'で始まるコメ"
"ントを追加できます - IPアドレス、ワイルドカード、正規表現は使用できません。" "ントを追加できます - IPアドレス、ワイルドカード、正規表現は使用できません。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
@ -732,7 +728,7 @@ msgstr ""
"最後に生成されたDNSレポートを表示しています。更新ボタンを押して現在の状況を表" "最後に生成されたDNSレポートを表示しています。更新ボタンを押して現在の状況を表"
"示します。" "示します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "時刻" msgstr "時刻"
@ -748,7 +744,7 @@ msgstr ""
"adblockリストを常に最新にするには、自動更新をこれらのリストに設定する必要があ" "adblockリストを常に最新にするには、自動更新をこれらのリストに設定する必要があ"
"ります。" "ります。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "上位10項目" msgstr "上位10項目"
@ -756,6 +752,10 @@ msgstr "上位10項目"
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "adblockの通知Eメールのトピック。" msgstr "adblockの通知Eメールのトピック。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "トリガ遅延" msgstr "トリガ遅延"
@ -778,7 +778,7 @@ msgstr ""
"ホワイトリストへの変更が保存されました。adblockのリストを更新して変更を適用し" "ホワイトリストへの変更が保存されました。adblockのリストを更新して変更を適用し"
"ます。" "ます。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "ホワイトリスト..." msgstr "ホワイトリスト..."
@ -790,7 +790,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -806,6 +806,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "DNSリクエスト(ブロック)"
#~ msgid "DNS Requests (total)"
#~ msgstr "DNSリクエスト(合計)"
#~ msgid "End Date"
#~ msgstr "終了日"
#~ msgid "Start Date"
#~ msgstr "開始日"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.2-dev\n" "X-Generator: Weblate 4.2-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "액션" msgstr "액션"
@ -67,7 +67,7 @@ msgstr "고급 이메일 설정"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "고급 리포트 설정" msgstr "고급 리포트 설정"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -94,11 +94,15 @@ msgstr ""
"블랙리스트 변경사항이 저장되었습니다. Adblock 리스트를 새로고침하여 변경사항" "블랙리스트 변경사항이 저장되었습니다. Adblock 리스트를 새로고침하여 변경사항"
"을 적용하세요." "을 적용하세요."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "블랙리스트..." msgstr "블랙리스트..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "차단된 도메인" msgstr "차단된 도메인"
@ -114,7 +118,7 @@ msgstr "차단목록 백업"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -131,8 +135,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "취소" msgstr "취소"
@ -143,7 +147,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -155,9 +159,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -186,19 +190,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -220,8 +216,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -291,8 +287,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -315,7 +311,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -358,7 +354,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -415,11 +411,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -436,7 +432,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -467,12 +463,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -484,7 +480,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -527,7 +523,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -595,8 +591,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -669,13 +665,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -689,7 +685,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -697,6 +693,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -717,7 +717,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -729,7 +729,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -67,7 +67,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -92,11 +92,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -112,7 +116,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -129,8 +133,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -141,7 +145,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -153,9 +157,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -184,19 +188,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -218,8 +214,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -289,8 +285,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "सक्षम केले" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -313,7 +309,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -356,7 +352,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -413,11 +409,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -434,7 +430,7 @@ msgstr "आढावा"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -465,12 +461,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -482,7 +478,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -525,7 +521,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -593,8 +589,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -667,13 +663,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -687,7 +683,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -695,6 +691,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -715,7 +715,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -727,7 +727,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.10-dev\n" "X-Generator: Weblate 3.10-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Tindakan" msgstr "Tindakan"
@ -67,7 +67,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Jawapan" msgstr "Jawapan"
@ -92,11 +92,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Kawasan Liputan Yang telah disekat" msgstr "Kawasan Liputan Yang telah disekat"
@ -112,7 +116,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -129,8 +133,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -141,7 +145,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Pelanggan" msgstr "Pelanggan"
@ -153,9 +157,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Kiraan" msgstr "Kiraan"
@ -184,19 +188,11 @@ msgstr "Reset fail DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Tarikh" msgstr "Tarikh"
@ -218,8 +214,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -289,8 +285,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -313,7 +309,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -356,7 +352,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -413,11 +409,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -434,7 +430,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -465,12 +461,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -482,7 +478,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -525,7 +521,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -593,8 +589,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -667,13 +663,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -687,7 +683,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -695,6 +691,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -715,7 +715,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -727,7 +727,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Handling" msgstr "Handling"
@ -69,7 +69,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Svar" msgstr "Svar"
@ -94,11 +94,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Blokkert domene" msgstr "Blokkert domene"
@ -114,7 +118,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -131,8 +135,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -143,7 +147,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -155,9 +159,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Antall" msgstr "Antall"
@ -186,19 +190,11 @@ msgstr "DNS-filtilbakestilling"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Dato" msgstr "Dato"
@ -220,8 +216,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domene" msgstr "Domene"
@ -291,9 +287,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Aktivert" msgstr "Aktivert"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Sluttdato" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -315,7 +311,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -358,7 +354,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "Sist kjørt" msgstr "Sist kjørt"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -415,11 +411,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -436,7 +432,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -467,12 +463,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -484,7 +480,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -527,7 +523,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -595,8 +591,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -669,13 +665,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -689,7 +685,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -697,6 +693,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -717,7 +717,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -729,7 +729,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -745,6 +745,9 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "End Date"
#~ msgstr "Sluttdato"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -11,7 +11,7 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n" "|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.3-dev\n" "X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Akcja" msgstr "Akcja"
@ -70,7 +70,7 @@ msgstr "Ustawienia email"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Ustawienia raportowania" msgstr "Ustawienia raportowania"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Odpowiedź" msgstr "Odpowiedź"
@ -99,11 +99,15 @@ msgstr ""
"Zmiany czarnej listy zostały zapisane. Odśwież listę adblocków, aby zmiany " "Zmiany czarnej listy zostały zapisane. Odśwież listę adblocków, aby zmiany "
"zostały wprowadzone." "zostały wprowadzone."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Czarna lista..." msgstr "Czarna lista..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Zablokowana domena" msgstr "Zablokowana domena"
@ -119,7 +123,7 @@ msgstr "Kopia zapasowa list blokujących"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Zapytanie do list blokujących" msgstr "Zapytanie do list blokujących"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Zapytanie..." msgstr "Zapytanie..."
@ -140,8 +144,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Anuluj" msgstr "Anuluj"
@ -154,7 +158,7 @@ msgstr ""
"Zmiany na tej karcie wymagają ponownego uruchomienia usługi Adblock, aby " "Zmiany na tej karcie wymagają ponownego uruchomienia usługi Adblock, aby "
"zostały wprowadzone. <br /> <p> &#xa0; </p>" "zostały wprowadzone. <br /> <p> &#xa0; </p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -170,9 +174,9 @@ msgstr ""
"net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\"> " "net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\"> "
"sprawdź dokumentację online </a>" "sprawdź dokumentację online </a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Licznik" msgstr "Licznik"
@ -203,19 +207,11 @@ msgstr "Resetuj plik DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "Raport DNS" msgstr "Raport DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "Żądania DNS (zablokowane)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "Żądania DNS (ogółem)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Limit czasu restartu DNS" msgstr "Limit czasu restartu DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
@ -239,8 +235,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Wyłącz selektywną białą listę DNS (RPZ)." msgstr "Wyłącz selektywną białą listę DNS (RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domena" msgstr "Domena"
@ -311,9 +307,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Włączone" msgstr "Włączone"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Data końcowa" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -340,7 +336,7 @@ msgstr ""
"sukcesem. Uwaga: Aby wyłączyć to zaznaczenie, należy ustawić opcję na " "sukcesem. Uwaga: Aby wyłączyć to zaznaczenie, należy ustawić opcję na "
"'false'." "'false'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Kryteria filtrowania takie jak data, domena lub klient (opcjonalnie)" msgstr "Kryteria filtrowania takie jak data, domena lub klient (opcjonalnie)"
@ -386,7 +382,7 @@ msgstr "Katalog więzienia"
msgid "Last Run" msgid "Last Run"
msgstr "Ostatnie uruchomienie" msgstr "Ostatnie uruchomienie"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Ostatnie zapytania DNS" msgstr "Ostatnie zapytania DNS"
@ -459,11 +455,11 @@ msgstr "Widok dziennika"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Usługa niskopriorytetowa" msgstr "Usługa niskopriorytetowa"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Nazwa/Adres IP" msgstr "Nazwa/Adres IP"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "Brak wyników zapytania!" msgstr "Brak wyników zapytania!"
@ -480,7 +476,7 @@ msgstr "Przegląd"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Profil używany przez 'msmtp' do powiadamiania o blokadzie email." msgstr "Profil używany przez 'msmtp' do powiadamiania o blokadzie email."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Zapytanie" msgstr "Zapytanie"
@ -519,12 +515,12 @@ msgstr ""
"Zmniejsz priorytet przetwarzania w tle, aby pobierać mniej zasobów systemu. " "Zmniejsz priorytet przetwarzania w tle, aby pobierać mniej zasobów systemu. "
"Uwaga: wymagany restart usługi adblock." "Uwaga: wymagany restart usługi adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Odśwież" msgstr "Odśwież"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Odśwież raport DNS" msgstr "Odśwież raport DNS"
@ -536,7 +532,7 @@ msgstr "Odśwież zegar"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Odśwież zegar..." msgstr "Odśwież zegar..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Odświeżanie..." msgstr "Odświeżanie..."
@ -581,7 +577,7 @@ msgstr ""
"Resetuje ostateczną listę bloków DNS 'adb_list.overall' po załadowaniu " "Resetuje ostateczną listę bloków DNS 'adb_list.overall' po załadowaniu "
"zaplecza DNS. Uwaga: Ta opcja uruchamia w tle mały monitor ubus/adblock." "zaplecza DNS. Uwaga: Ta opcja uruchamia w tle mały monitor ubus/adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Wynik" msgstr "Wynik"
@ -655,9 +651,9 @@ msgstr "Rozdzielona spacjami lista portów używanych przez tcpdump."
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "Specjalne opcje konfiguracji dla wybranego narzędzia do pobierania." msgstr "Specjalne opcje konfiguracji dla wybranego narzędzia do pobierania."
#: 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Data rozpoczęcia" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -744,7 +740,7 @@ msgstr ""
"<br /> Uwaga: dodaj tylko jedną domenę na linię. Komentarze wprowadzone z " "<br /> Uwaga: dodaj tylko jedną domenę na linię. Komentarze wprowadzone z "
"'#' są dozwolone - adresy ip, wildcards i regex nie są dozwolone." "'#' są dozwolone - adresy ip, wildcards i regex nie są dozwolone."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
@ -752,7 +748,7 @@ msgstr ""
"Pokazuje ostatni wygenerowany raport DNS, naciśnij przycisk odświeżania, aby " "Pokazuje ostatni wygenerowany raport DNS, naciśnij przycisk odświeżania, aby "
"uzyskać bieżący." "uzyskać bieżący."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Czas" msgstr "Czas"
@ -768,7 +764,7 @@ msgstr ""
"Aby twoje listy były aktualne, powinieneś ustawić automatyczne zadanie " "Aby twoje listy były aktualne, powinieneś ustawić automatyczne zadanie "
"aktualizacji dla tych list." "aktualizacji dla tych list."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top 10" msgstr "Top 10"
@ -776,6 +772,10 @@ msgstr "Top 10"
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Temat dla powiadomień email adblocka." msgstr "Temat dla powiadomień email adblocka."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Opóźnienie wyzwalacza" msgstr "Opóźnienie wyzwalacza"
@ -798,7 +798,7 @@ msgstr ""
"Zmiany na białej liście zostały zapisane. Odśwież listę, aby zmiany zostały " "Zmiany na białej liście zostały zapisane. Odśwież listę, aby zmiany zostały "
"wprowadzone." "wprowadzone."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Biała lista ..." msgstr "Biała lista ..."
@ -810,7 +810,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "maks. rozmiar zestawu wyników" msgstr "maks. rozmiar zestawu wyników"
@ -826,6 +826,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "Żądania DNS (zablokowane)"
#~ msgid "DNS Requests (total)"
#~ msgstr "Żądania DNS (ogółem)"
#~ msgid "End Date"
#~ msgstr "Data końcowa"
#~ msgid "Start Date"
#~ msgstr "Data rozpoczęcia"
#~ msgid "SafeSearch Moderate" #~ msgid "SafeSearch Moderate"
#~ msgstr "Moderuj filtr SafeSearch" #~ msgstr "Moderuj filtr SafeSearch"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3.2-dev\n" "X-Generator: Weblate 4.3.2-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Ação" msgstr "Ação"
@ -69,7 +69,7 @@ msgstr "Configurações Avançadas do E-Mail"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Configurações Avançadas do Relatório" msgstr "Configurações Avançadas do Relatório"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Resposta" msgstr "Resposta"
@ -99,11 +99,15 @@ msgstr ""
"As alterações na lista negra foram gravadas. Atualize as suas listas de " "As alterações na lista negra foram gravadas. Atualize as suas listas de "
"adblock para que as alterações entrem em vigor." "adblock para que as alterações entrem em vigor."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Lista negra..." msgstr "Lista negra..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Domínio Bloqueado" msgstr "Domínio Bloqueado"
@ -119,7 +123,7 @@ msgstr "Cópia de Segurança da Lista de Bloqueio"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Consulta na Lista de Bloqueio" msgstr "Consulta na Lista de Bloqueio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Pesquisando a Lista de Bloqueio..." msgstr "Pesquisando a Lista de Bloqueio..."
@ -140,8 +144,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
@ -154,7 +158,7 @@ msgstr ""
"As alterações nesta guia precisam de uma reinicialização completa do serviço " "As alterações nesta guia precisam de uma reinicialização completa do serviço "
"adblock para entrar em vigor.<br /><p>&#xa0;</p>" "adblock para entrar em vigor.<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Cliente" msgstr "Cliente"
@ -170,9 +174,9 @@ msgstr ""
"packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" rel=" "packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" rel="
"\"noreferrer noopener\" >verifique a documentação on-line</a>" "\"noreferrer noopener\" >verifique a documentação on-line</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Contagem" msgstr "Contagem"
@ -203,19 +207,11 @@ msgstr "Repor o ficheiro DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "Relatório do DNS" msgstr "Relatório do DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "Solicitações do DNS (bloqueadas)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "Solicitações do DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Tempo Limite para Reiniciar o DNS" msgstr "Tempo Limite para Reiniciar o DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
@ -239,8 +235,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Desativa a lista branca seletiva do DNS (passagem pelo RPZ)." msgstr "Desativa a lista branca seletiva do DNS (passagem pelo RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domínio" msgstr "Domínio"
@ -312,9 +308,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Data final" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -341,7 +337,7 @@ msgstr ""
"infraestrutura do DNS. Nota: defina como 'falsa' para desativar esta " "infraestrutura do DNS. Nota: defina como 'falsa' para desativar esta "
"verificação." "verificação."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Filtrar critérios como data, domínio ou cliente (opcional)" msgstr "Filtrar critérios como data, domínio ou cliente (opcional)"
@ -388,7 +384,7 @@ msgstr "Diretório Prisional"
msgid "Last Run" msgid "Last Run"
msgstr "Última Execução" msgstr "Última Execução"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "As últimas solicitações do DNS" msgstr "As últimas solicitações do DNS"
@ -462,11 +458,11 @@ msgstr "Vista do registo log"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Serviço de Baixa Prioridade" msgstr "Serviço de Baixa Prioridade"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Nome / Endereço IP" msgstr "Nome / Endereço IP"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "A consulta não retornou resultados!" msgstr "A consulta não retornou resultados!"
@ -483,7 +479,7 @@ msgstr "Visão Geral"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Perfil dos e-mails de notificação do adblock utilizado por 'msmtp'." msgstr "Perfil dos e-mails de notificação do adblock utilizado por 'msmtp'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Consulta" msgstr "Consulta"
@ -523,12 +519,12 @@ msgstr ""
"economizar os recursos do sistema. Nota: Esta alteração requer uma " "economizar os recursos do sistema. Nota: Esta alteração requer uma "
"reinicialização completa do serviço adblock para que faça efeito." "reinicialização completa do serviço adblock para que faça efeito."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Atualizar" msgstr "Atualizar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Atualizar o Relatório do DNS" msgstr "Atualizar o Relatório do DNS"
@ -540,7 +536,7 @@ msgstr "Atualizar Temporizador"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Atualizando o Temporizador..." msgstr "Atualizando o Temporizador..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Atualizar..." msgstr "Atualizar..."
@ -586,7 +582,7 @@ msgstr ""
"carregamento da infraestrutura do DNS. Nota: Esta opção inicia um pequeno " "carregamento da infraestrutura do DNS. Nota: Esta opção inicia um pequeno "
"monitor ubus/adblock em segundo plano." "monitor ubus/adblock em segundo plano."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
@ -662,9 +658,9 @@ msgstr ""
"Opções especiais de configuração para o utilitário de descarregamento " "Opções especiais de configuração para o utilitário de descarregamento "
"selecionado." "selecionado."
#: 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Data de Início" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -753,7 +749,7 @@ msgstr ""
"permitidos.<br /> Nota: adicione apenas um domínio por linha. Comentários " "permitidos.<br /> Nota: adicione apenas um domínio por linha. Comentários "
"introduzidos com '#' são permitidos - endereços ip, curingas e regex não são." "introduzidos com '#' são permitidos - endereços ip, curingas e regex não são."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
@ -761,7 +757,7 @@ msgstr ""
"Exibe o último Relatório DNS gerado, pressione o botão de atualização para " "Exibe o último Relatório DNS gerado, pressione o botão de atualização para "
"obter um atual." "obter um atual."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Tempo" msgstr "Tempo"
@ -777,7 +773,7 @@ msgstr ""
"Para manter as suas listas de adblock atualizadas, deve configurar uma " "Para manter as suas listas de adblock atualizadas, deve configurar uma "
"tarefa de atualização automática para essas listas." "tarefa de atualização automática para essas listas."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "As 10 Estatísticas Principais" msgstr "As 10 Estatísticas Principais"
@ -786,6 +782,10 @@ msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
"Defina o assunto dos e-mails que serão usados nas notificações do adblock." "Defina o assunto dos e-mails que serão usados nas notificações do adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Atraso do Gatilho" msgstr "Atraso do Gatilho"
@ -808,7 +808,7 @@ msgstr ""
"As modificações feitas na lista branca foram salvas. Atualize a sua lista de " "As modificações feitas na lista branca foram salvas. Atualize a sua lista de "
"adblock para que as modificações feitas tenham efeito." "adblock para que as modificações feitas tenham efeito."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Lista Branca..." msgstr "Lista Branca..."
@ -820,7 +820,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "def. a quantidade máxima de resultados" msgstr "def. a quantidade máxima de resultados"
@ -836,6 +836,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "Solicitações do DNS (bloqueadas)"
#~ msgid "DNS Requests (total)"
#~ msgstr "Solicitações do DNS (total)"
#~ msgid "End Date"
#~ msgstr "Data final"
#~ msgid "Start Date"
#~ msgstr "Data de Início"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -13,7 +13,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3-dev\n" "X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Ação" msgstr "Ação"
@ -72,7 +72,7 @@ msgstr "Configurações Avançadas do E-Mail"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Configurações Avançadas do Relatório" msgstr "Configurações Avançadas do Relatório"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Resposta" msgstr "Resposta"
@ -102,11 +102,15 @@ msgstr ""
"As alterações na lista negra foram salvas. Atualize as suas listas de " "As alterações na lista negra foram salvas. Atualize as suas listas de "
"bloqueio de anúncios para que as alterações entrem em vigor." "bloqueio de anúncios para que as alterações entrem em vigor."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Lista negra..." msgstr "Lista negra..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Domínios Bloqueados" msgstr "Domínios Bloqueados"
@ -122,7 +126,7 @@ msgstr "Cópia de Segurança da Lista de Bloqueio"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Consulta na Lista de Bloqueio" msgstr "Consulta na Lista de Bloqueio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Pesquisando a Lista de Bloqueio..." msgstr "Pesquisando a Lista de Bloqueio..."
@ -143,8 +147,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
@ -157,7 +161,7 @@ msgstr ""
"As alterações nesta guia precisam de uma reinicialização completa do serviço " "As alterações nesta guia precisam de uma reinicialização completa do serviço "
"adblock para entrar em vigor.<br /><p>&#xa0;</p>" "adblock para entrar em vigor.<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Cliente" msgstr "Cliente"
@ -173,9 +177,9 @@ msgstr ""
"packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" rel=" "packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" rel="
"\"noreferrer noopener\" >verifique a documentação on-line</a>" "\"noreferrer noopener\" >verifique a documentação on-line</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Contagem" msgstr "Contagem"
@ -206,19 +210,11 @@ msgstr "Zerar Arquivo de DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "Relatório do DNS" msgstr "Relatório do DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "Solicitações do DNS (bloqueadas)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "Solicitações do DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Tempo Limite para Reiniciar o DNS" msgstr "Tempo Limite para Reiniciar o DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Dia" msgstr "Dia"
@ -242,8 +238,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Desative a lista branca seletiva do DNS (passagem pelo RPZ)." msgstr "Desative a lista branca seletiva do DNS (passagem pelo RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domínio" msgstr "Domínio"
@ -315,9 +311,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Data Final" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -344,7 +340,7 @@ msgstr ""
"infraestrutura do DNS. Nota: Defina como 'falsa' para desativar esta " "infraestrutura do DNS. Nota: Defina como 'falsa' para desativar esta "
"verificação." "verificação."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Filtrar critérios como data, domínio ou cliente (opcional)" msgstr "Filtrar critérios como data, domínio ou cliente (opcional)"
@ -391,7 +387,7 @@ msgstr "Diretório Prisional"
msgid "Last Run" msgid "Last Run"
msgstr "Última Execução" msgstr "Última Execução"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "As últimas solicitações do DNS" msgstr "As últimas solicitações do DNS"
@ -465,11 +461,11 @@ msgstr "Exibir o Registro Log"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Serviço de Baixa Prioridade" msgstr "Serviço de Baixa Prioridade"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Nome / Endereço-IP" msgstr "Nome / Endereço-IP"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "A Consulta Não Retornou Resultados!" msgstr "A Consulta Não Retornou Resultados!"
@ -488,7 +484,7 @@ msgstr ""
"Perfil dos E-Mails de notificação do bloqueio de anúncio utilizado por " "Perfil dos E-Mails de notificação do bloqueio de anúncio utilizado por "
"'msmtp'." "'msmtp'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Consulta" msgstr "Consulta"
@ -531,12 +527,12 @@ msgstr ""
"alteração requer uma reinicialização completa do serviço adblock para que " "alteração requer uma reinicialização completa do serviço adblock para que "
"surta efeito." "surta efeito."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Atualizar" msgstr "Atualizar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Atualizar o Relatório do DNS" msgstr "Atualizar o Relatório do DNS"
@ -548,7 +544,7 @@ msgstr "Atualizar Temporizador"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Atualizando o Temporizador..." msgstr "Atualizando o Temporizador..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Atualizar..." msgstr "Atualizar..."
@ -594,7 +590,7 @@ msgstr ""
"da infraestrutura do DNS. Nota: Esta opção inicia um pequeno monitor ubus/" "da infraestrutura do DNS. Nota: Esta opção inicia um pequeno monitor ubus/"
"adblock em segundo plano." "adblock em segundo plano."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
@ -670,9 +666,9 @@ msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
"Opções especiais de configuração para o utilitário de download selecionado." "Opções especiais de configuração para o utilitário de download selecionado."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Data de Início" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -761,7 +757,7 @@ msgstr ""
"Comentários introduzidos com '#' são permitidos - endereços ip, curingas e " "Comentários introduzidos com '#' são permitidos - endereços ip, curingas e "
"regex não são." "regex não são."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
@ -769,7 +765,7 @@ msgstr ""
"Exibe o último Relatório DNS gerado, pressione o botão de atualização para " "Exibe o último Relatório DNS gerado, pressione o botão de atualização para "
"obter um atual." "obter um atual."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Tempo" msgstr "Tempo"
@ -785,7 +781,7 @@ msgstr ""
"Para manter as suas listas de bloqueio de anúncios atualizadas, você deve " "Para manter as suas listas de bloqueio de anúncios atualizadas, você deve "
"configurar uma tarefa de atualização automática para essas listas." "configurar uma tarefa de atualização automática para essas listas."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "As 10 Estatísticas Principais" msgstr "As 10 Estatísticas Principais"
@ -795,6 +791,10 @@ msgstr ""
"Defina o assunto dos E-Mais que serão usados nas notificações do bloqueador " "Defina o assunto dos E-Mais que serão usados nas notificações do bloqueador "
"de anúncios." "de anúncios."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Gatilho de Atraso" msgstr "Gatilho de Atraso"
@ -817,7 +817,7 @@ msgstr ""
"As modificações feitas na lista branca foram salvas. Atualize a sua lista de " "As modificações feitas na lista branca foram salvas. Atualize a sua lista de "
"bloqueio de anúncios para que as modificações feitas surtam efeito." "bloqueio de anúncios para que as modificações feitas surtam efeito."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Lista Branca..." msgstr "Lista Branca..."
@ -829,7 +829,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "def. a quantidade máxima de resultados" msgstr "def. a quantidade máxima de resultados"
@ -845,6 +845,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "Solicitações do DNS (bloqueadas)"
#~ msgid "DNS Requests (total)"
#~ msgstr "Solicitações do DNS (total)"
#~ msgid "End Date"
#~ msgstr "Data Final"
#~ msgid "Start Date"
#~ msgstr "Data de Início"
#~ msgid "SafeSearch Moderate" #~ msgid "SafeSearch Moderate"
#~ msgstr "SafeSearch Moderado" #~ msgstr "SafeSearch Moderado"

View file

@ -11,7 +11,7 @@ msgstr ""
"20)) ? 1 : 2;\n" "20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Actiune" msgstr "Actiune"
@ -70,7 +70,7 @@ msgstr "Setări Avansate E-Mail"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Setări Avansate Raport" msgstr "Setări Avansate Raport"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Răspuns" msgstr "Răspuns"
@ -99,11 +99,15 @@ msgstr ""
"Schimbările la Lista de Interzise au fost salvate. Reîmprospătați lista " "Schimbările la Lista de Interzise au fost salvate. Reîmprospătați lista "
"adblock pentru ca schimbările să aibă efect." "adblock pentru ca schimbările să aibă efect."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Lista de Interzise..." msgstr "Lista de Interzise..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Domeniu blocat" msgstr "Domeniu blocat"
@ -119,7 +123,7 @@ msgstr "Copie de Rezervă Pentru Lista de Blocate"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Interogare Lista de Blocare" msgstr "Interogare Lista de Blocare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Interogare Lista de Blocare..." msgstr "Interogare Lista de Blocare..."
@ -140,8 +144,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Renunțare" msgstr "Renunțare"
@ -152,7 +156,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -168,9 +172,9 @@ msgstr ""
"com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" "com/openwrt/packages/blob/master/net/adblock/files/README.md\" target="
"\"_blank\" rel=\"noreferrer noopener\" >verificați documentația online</a>" "\"_blank\" rel=\"noreferrer noopener\" >verificați documentația online</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Număr" msgstr "Număr"
@ -201,19 +205,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "Raport DNS" msgstr "Raport DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "Cereri DNS (blocate)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "Cereri DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Timp Repornire DNS" msgstr "Timp Repornire DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
@ -237,8 +233,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)." msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domeniu" msgstr "Domeniu"
@ -309,9 +305,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Activat" msgstr "Activat"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Data sfârşit" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -338,7 +334,7 @@ msgstr ""
"rugăm să rețineți: pentru a dezactiva această verificare, setați această " "rugăm să rețineți: pentru a dezactiva această verificare, setați această "
"opțiune pe „falsă”." "opțiune pe „falsă”."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Criterii de filtrare precum dată, domeniu sau client (opțional)" msgstr "Criterii de filtrare precum dată, domeniu sau client (opțional)"
@ -385,7 +381,7 @@ msgstr "Director Închisoare"
msgid "Last Run" msgid "Last Run"
msgstr "Ultima rulare" msgstr "Ultima rulare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Ultimele Cereri DNS" msgstr "Ultimele Cereri DNS"
@ -456,11 +452,11 @@ msgstr "Vizualizare Jurnal"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Nume / Adresă IP" msgstr "Nume / Adresă IP"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "Nu există rezultate de interogare!" msgstr "Nu există rezultate de interogare!"
@ -477,7 +473,7 @@ msgstr "Prezentare generală"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Profil utilizat de „msmtp” pentru e-mailurile de notificare adblock." msgstr "Profil utilizat de „msmtp” pentru e-mailurile de notificare adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Interogare" msgstr "Interogare"
@ -517,12 +513,12 @@ msgstr ""
"puține resurse din sistem. Vă rugăm să rețineți: această modificare necesită " "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." "o repornire completă a serviciului de blocare pentru a avea efect."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Reîmprospătare" msgstr "Reîmprospătare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Actualizare Raport DNS" msgstr "Actualizare Raport DNS"
@ -534,7 +530,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -577,7 +573,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -645,9 +641,9 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Data de început" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -719,13 +715,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -739,7 +735,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -747,6 +743,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Intârzierea declanșării" msgstr "Intârzierea declanșării"
@ -767,7 +767,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -779,7 +779,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -795,6 +795,18 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "DNS Requests (blocked)"
#~ msgstr "Cereri DNS (blocate)"
#~ msgid "DNS Requests (total)"
#~ msgstr "Cereri DNS (total)"
#~ msgid "End Date"
#~ msgstr "Data sfârşit"
#~ msgid "Start Date"
#~ msgstr "Data de început"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -16,7 +16,7 @@ msgstr ""
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Действие" msgstr "Действие"
@ -73,7 +73,7 @@ msgstr "Дополнительные настройки электронной
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Расширенные настройки отчетов" msgstr "Расширенные настройки отчетов"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Ответ" msgstr "Ответ"
@ -102,11 +102,15 @@ msgstr ""
"Изменения черного списка сохранены. Обновите списки AdBlock-а, чтобы они " "Изменения черного списка сохранены. Обновите списки AdBlock-а, чтобы они "
"вступили в силу." "вступили в силу."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Черный список..." msgstr "Черный список..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Заблокированные домены" msgstr "Заблокированные домены"
@ -122,7 +126,7 @@ msgstr "Бэкап черного списка"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Блокировка запросов" msgstr "Блокировка запросов"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Запросы к черному списку..." msgstr "Запросы к черному списку..."
@ -145,8 +149,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Отмена" msgstr "Отмена"
@ -159,7 +163,7 @@ msgstr ""
"Для вступления в силу изменений на этой вкладке требуется полный перезапуск " "Для вступления в силу изменений на этой вкладке требуется полный перезапуск "
"службы adblock.<br />2<p>3&#xa0;4</p>" "службы adblock.<br />2<p>3&#xa0;4</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Клиент" msgstr "Клиент"
@ -171,13 +175,13 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
"Конфигурация AdBlock-а для блокировки рекламных/мошеннических доменов с " "Конфигурация AdBlock-а для блокировки рекламных/мошеннических доменов с "
"помощью DNS. Чтобы получить больше информации, прочитайте <a href=\"https" "помощью DNS. Чтобы получить больше информации, прочитайте <a href=\"https://"
"://github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" " "github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target="
"target=\"_blank\" rel=\"noreferrer noopener\" >онлайн документацию</a>" "\"_blank\" rel=\"noreferrer noopener\" >онлайн документацию</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Количество" msgstr "Количество"
@ -208,19 +212,11 @@ msgstr "Сброс файла DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "Отчет DNS" msgstr "Отчет DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNS запросы (заблокированы)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "DNS запросов (всего)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Таймаут перезапуска DNS" msgstr "Таймаут перезапуска DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Дата" msgstr "Дата"
@ -245,8 +241,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Запретить избирательное применение белого списка DNS (сквозное RPZ)." msgstr "Запретить избирательное применение белого списка DNS (сквозное RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Домен" msgstr "Домен"
@ -316,9 +312,9 @@ msgstr "Включить подробный отчёт при возникнов
msgid "Enabled" msgid "Enabled"
msgstr "Включено" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Дата окончания" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -345,7 +341,7 @@ msgstr ""
"внимание: чтобы отключить эту проверку, установите для этой опции значение " "внимание: чтобы отключить эту проверку, установите для этой опции значение "
"«false»." "«false»."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Критерии фильтрации, такие как дата, домен или клиент (необязательно)" msgstr "Критерии фильтрации, такие как дата, домен или клиент (необязательно)"
@ -388,7 +384,7 @@ msgstr "Директория Jail"
msgid "Last Run" msgid "Last Run"
msgstr "Последний запуск" msgstr "Последний запуск"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Последние DNS запросы" msgstr "Последние DNS запросы"
@ -451,11 +447,11 @@ msgstr "Просмотр журнала"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Низкий приоритет службы" msgstr "Низкий приоритет службы"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "Имя / IP-адрес" msgstr "Имя / IP-адрес"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "Нет результатов запроса!" msgstr "Нет результатов запроса!"
@ -472,7 +468,7 @@ msgstr "Обзор"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Запрос" msgstr "Запрос"
@ -506,12 +502,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Обновить" msgstr "Обновить"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "Обновление отчета DNS" msgstr "Обновление отчета DNS"
@ -523,7 +519,7 @@ msgstr "Обновить таймер"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "Обновить таймер..." msgstr "Обновить таймер..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "Обновить..." msgstr "Обновить..."
@ -566,7 +562,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "Результат" msgstr "Результат"
@ -636,9 +632,9 @@ msgstr "Разделенный пробелами список портов ис
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "Специальные конфигурационные опции для выбранной утилиты загрузки." 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "Дата начала" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -716,13 +712,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Время" msgstr "Время"
@ -737,7 +733,7 @@ msgid ""
msgstr "" msgstr ""
"Чтобы списки были актуальными, следует настроить автоматическое обновление." "Чтобы списки были актуальными, следует настроить автоматическое обновление."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Топ-10 статистики" msgstr "Топ-10 статистики"
@ -745,6 +741,10 @@ msgstr "Топ-10 статистики"
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Тема электронных писем уведомлений adblock." msgstr "Тема электронных писем уведомлений adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Задержка запуска" msgstr "Задержка запуска"
@ -767,7 +767,7 @@ msgstr ""
"Изменения в белом списке были сохранены. Обновите свои списки рекламных " "Изменения в белом списке были сохранены. Обновите свои списки рекламных "
"блоков, чтобы изменения вступили в силу." "блоков, чтобы изменения вступили в силу."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Белый список..." msgstr "Белый список..."
@ -779,7 +779,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -795,6 +795,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "DNS запросы (заблокированы)"
#~ msgid "DNS Requests (total)"
#~ msgstr "DNS запросов (всего)"
#~ msgid "End Date"
#~ msgstr "Дата окончания"
#~ msgid "Start Date"
#~ msgstr "Дата начала"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Akcia" msgstr "Akcia"
@ -70,7 +70,7 @@ msgstr "Pokročilé nastavenia e-mailu"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Pokročilé nastavenia" msgstr "Pokročilé nastavenia"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Odpoveď" msgstr "Odpoveď"
@ -97,11 +97,15 @@ msgstr ""
"Zmeny v zozname zakázaných domén boli uložené. Obnovte zoznamy Adblocku aby " "Zmeny v zozname zakázaných domén boli uložené. Obnovte zoznamy Adblocku aby "
"sa prejavili." "sa prejavili."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Zoznam zakázaných domén..." msgstr "Zoznam zakázaných domén..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Blokovaná doména" msgstr "Blokovaná doména"
@ -117,7 +121,7 @@ msgstr "Záloha zoznamu blokovaných domén"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -134,8 +138,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Zrušiť" msgstr "Zrušiť"
@ -146,7 +150,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -158,9 +162,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Počet" msgstr "Počet"
@ -189,19 +193,11 @@ msgstr "Inicializácia DNS súboru"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Dátum" msgstr "Dátum"
@ -223,8 +219,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Doména" msgstr "Doména"
@ -294,9 +290,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Povolené" msgstr "Povolené"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Koncový dátum" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -318,7 +314,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -361,7 +357,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -418,11 +414,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -439,7 +435,7 @@ msgstr "Prehľad"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -470,12 +466,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -487,7 +483,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -530,7 +526,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -598,8 +594,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -672,13 +668,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -692,7 +688,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -700,6 +696,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -720,7 +720,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -732,7 +732,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -748,6 +748,9 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "End Date"
#~ msgstr "Koncový dátum"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3-dev\n" "X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Åtgärd" msgstr "Åtgärd"
@ -69,7 +69,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Svar" msgstr "Svar"
@ -94,11 +94,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Blockerad domän" msgstr "Blockerad domän"
@ -114,7 +118,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -131,8 +135,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -143,7 +147,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -155,9 +159,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Räkna" msgstr "Räkna"
@ -186,19 +190,11 @@ msgstr "DNS-filåterställning"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
@ -220,8 +216,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Domän" msgstr "Domän"
@ -291,9 +287,9 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Aktiverad" msgstr "Aktiverad"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "Slutdatum" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -315,7 +311,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -358,7 +354,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "Kördes senast" msgstr "Kördes senast"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -415,11 +411,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Lågprioriterad tjänst" msgstr "Lågprioriterad tjänst"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -436,7 +432,7 @@ msgstr "Översikt"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "Fråga" msgstr "Fråga"
@ -467,12 +463,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Uppdatera" msgstr "Uppdatera"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -484,7 +480,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -527,7 +523,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -595,8 +591,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -669,13 +665,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -689,7 +685,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -697,6 +693,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -717,7 +717,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -729,7 +729,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -745,6 +745,9 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "End Date"
#~ msgstr "Slutdatum"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -1,7 +1,7 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -58,7 +58,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -83,11 +83,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -103,7 +107,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -120,8 +124,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -132,7 +136,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -144,9 +148,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -175,19 +179,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "" msgstr ""
@ -209,8 +205,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -280,8 +276,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -304,7 +300,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -347,7 +343,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -404,11 +400,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -425,7 +421,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -456,12 +452,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -473,7 +469,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -516,7 +512,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -584,8 +580,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -658,13 +654,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -678,7 +674,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -686,6 +682,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -706,7 +706,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -718,7 +718,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3-dev\n" "X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Eylem" msgstr "Eylem"
@ -68,7 +68,7 @@ msgstr "Gelişmiş E-Posta Ayarları"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "Gelişmiş Rapor Ayarları" msgstr "Gelişmiş Rapor Ayarları"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Cevap" msgstr "Cevap"
@ -97,11 +97,15 @@ msgstr ""
"Kara liste değişiklikleri kaydedildi. Değişikliklerin etkili olması için " "Kara liste değişiklikleri kaydedildi. Değişikliklerin etkili olması için "
"reklam engelleme listelerinizi yenileyin." "reklam engelleme listelerinizi yenileyin."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "Kara liste..." msgstr "Kara liste..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Engellenmiş Alan Adı" msgstr "Engellenmiş Alan Adı"
@ -117,7 +121,7 @@ msgstr "Engelleme Listesi Yedekleme"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "Engelleme Listesi Sorgusu" msgstr "Engelleme Listesi Sorgusu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "Engelleme Listesi Sorgusu..." msgstr "Engelleme Listesi Sorgusu..."
@ -138,8 +142,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "İptal" msgstr "İptal"
@ -152,7 +156,7 @@ msgstr ""
"Bu sekmedeki değişikliklerin yürürlüğe girmesi için reklam engelleme " "Bu sekmedeki değişikliklerin yürürlüğe girmesi için reklam engelleme "
"hizmetinin yeniden başlatılması gerekir.<br /><p>&#xa0;</p>" "hizmetinin yeniden başlatılması gerekir.<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "İstemci" msgstr "İstemci"
@ -169,9 +173,9 @@ msgstr ""
"README.md\" target=\"_blank\" rel=\"noreferrer noopener\" > çevrimiçi " "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" > çevrimiçi "
"belgelere </a> bakın." "belgelere </a> bakın."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Adet" msgstr "Adet"
@ -202,19 +206,11 @@ msgstr "DNS Dosya Sıfırlama"
msgid "DNS Report" msgid "DNS Report"
msgstr "DNS Raporu" msgstr "DNS Raporu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNS İstekleri (engellenmiş)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "DNS İstekleri (toplam)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS Yeniden Başlatma Zaman Aşımı" msgstr "DNS Yeniden Başlatma Zaman Aşımı"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Tarih" msgstr "Tarih"
@ -238,8 +234,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Seçilebilir DNS beyaz listesini (RPZ geçişi) devre dışı bırakın." msgstr "Seçilebilir DNS beyaz listesini (RPZ geçişi) devre dışı bırakın."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Alan" msgstr "Alan"
@ -309,8 +305,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Etkin" msgstr "Etkin"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -333,7 +329,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -376,7 +372,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -433,11 +429,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -454,7 +450,7 @@ msgstr "Genel bakış"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -485,12 +481,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -502,7 +498,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -545,7 +541,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -613,8 +609,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -687,13 +683,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -707,7 +703,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -715,6 +711,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -735,7 +735,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -747,7 +747,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -763,6 +763,12 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "DNS Requests (blocked)"
#~ msgstr "DNS İstekleri (engellenmiş)"
#~ msgid "DNS Requests (total)"
#~ msgstr "DNS İstekleri (toplam)"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -11,7 +11,7 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.3.2-dev\n" "X-Generator: Weblate 4.3.2-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Дія" msgstr "Дія"
@ -68,7 +68,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
@ -93,11 +93,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "" msgstr ""
@ -113,7 +117,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -130,8 +134,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "Скасувати" msgstr "Скасувати"
@ -142,7 +146,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Клієнт" msgstr "Клієнт"
@ -154,9 +158,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "" msgstr ""
@ -185,19 +189,11 @@ msgstr ""
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Дата" msgstr "Дата"
@ -219,8 +215,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "Домен" msgstr "Домен"
@ -290,8 +286,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Увімкнено" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -314,7 +310,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -357,7 +353,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -414,11 +410,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -435,7 +431,7 @@ msgstr "Огляд"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -466,12 +462,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "Оновити" msgstr "Оновити"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -483,7 +479,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -526,7 +522,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -594,8 +590,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -668,13 +664,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "" msgstr ""
@ -688,7 +684,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -696,6 +692,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -716,7 +716,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -728,7 +728,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -10,7 +10,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "Hành động" msgstr "Hành động"
@ -68,7 +68,7 @@ msgstr ""
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "Phản hồi" msgstr "Phản hồi"
@ -93,11 +93,15 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "Tên miền bị chặn" msgstr "Tên miền bị chặn"
@ -113,7 +117,7 @@ msgstr ""
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "" msgstr ""
@ -130,8 +134,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -142,7 +146,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "Khách hàng" msgstr "Khách hàng"
@ -154,9 +158,9 @@ msgid ""
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "Bộ đếm" msgstr "Bộ đếm"
@ -186,19 +190,11 @@ msgstr "Đặt lại tệp DNS"
msgid "DNS Report" msgid "DNS Report"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "Ngày" msgstr "Ngày"
@ -220,8 +216,8 @@ msgstr ""
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
@ -291,8 +287,8 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Bật" msgstr "Bật"
#: 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
@ -315,7 +311,7 @@ msgid ""
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
@ -358,7 +354,7 @@ msgstr ""
msgid "Last Run" msgid "Last Run"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
@ -415,11 +411,11 @@ msgstr ""
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "" msgstr ""
@ -436,7 +432,7 @@ msgstr ""
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "" msgstr ""
@ -467,12 +463,12 @@ msgid ""
"service restart to take effect." "service restart to take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "" msgstr ""
@ -484,7 +480,7 @@ msgstr ""
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "" msgstr ""
@ -527,7 +523,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "" msgstr ""
@ -595,8 +591,8 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
@ -669,13 +665,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "Thời gian" msgstr "Thời gian"
@ -689,7 +685,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -697,6 +693,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Kích hoạt độ trễ" msgstr "Kích hoạt độ trễ"
@ -718,7 +718,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -730,7 +730,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""

View file

@ -17,7 +17,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "动作" msgstr "动作"
@ -74,7 +74,7 @@ msgstr "高级E-Mail设置"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "高级报告设置" msgstr "高级报告设置"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "回答" msgstr "回答"
@ -99,11 +99,15 @@ msgid ""
"take effect." "take effect."
msgstr "黑名单更改已保存。刷新您的广告阻止列表,以使更改生效。" msgstr "黑名单更改已保存。刷新您的广告阻止列表,以使更改生效。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "黑名单..." msgstr "黑名单..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "已拦截的域名" msgstr "已拦截的域名"
@ -119,7 +123,7 @@ msgstr "黑名单列表的备份"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "拦截列表查询" msgstr "拦截列表查询"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "黑名单查询..." msgstr "黑名单查询..."
@ -138,8 +142,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
@ -150,7 +154,7 @@ msgid ""
"><p>&#xa0;</p>" "><p>&#xa0;</p>"
msgstr "改变此项后需要完全重启 adblock 以生效<br /><p>&#xa0;</p>" msgstr "改变此项后需要完全重启 adblock 以生效<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "客户端 Client" msgstr "客户端 Client"
@ -165,9 +169,9 @@ msgstr ""
"github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target=" "github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target="
"\"_blank\" rel=\"noreferrer noopener\">查看在线文档</a>" "\"_blank\" rel=\"noreferrer noopener\">查看在线文档</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "计数" msgstr "计数"
@ -196,19 +200,11 @@ msgstr "DNS 文件重置"
msgid "DNS Report" msgid "DNS Report"
msgstr "DNS报告" msgstr "DNS报告"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNS请求已阻止"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "DNS请求总计"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS重新启动超时" msgstr "DNS重新启动超时"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "日期" msgstr "日期"
@ -230,8 +226,8 @@ msgstr "禁用具有自动加载/ inotify功能的dns后端的adblock触发的
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "禁止选择性DNS白名单(RPZ通过)." msgstr "禁止选择性DNS白名单(RPZ通过)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "域名" msgstr "域名"
@ -301,9 +297,9 @@ msgstr "在出现任何处理错误的情况下启用详细调试日志记录."
msgid "Enabled" msgid "Enabled"
msgstr "已启用" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "结束日期" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -327,7 +323,7 @@ msgstr ""
"外部域用于检查DNS后端是否成功重启。请注意要禁用此检查请将此选项设置为“ " "外部域用于检查DNS后端是否成功重启。请注意要禁用此检查请将此选项设置为“ "
"false”。" "false”。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "过滤条件,例如日期,域或客户(可选)" msgstr "过滤条件,例如日期,域或客户(可选)"
@ -372,7 +368,7 @@ msgstr "黑名单目录"
msgid "Last Run" msgid "Last Run"
msgstr "最后运行" msgstr "最后运行"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "最新的DNS请求" msgstr "最新的DNS请求"
@ -439,11 +435,11 @@ msgstr "日志视图"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "低优先级服务" msgstr "低优先级服务"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "名称 / IP 地址" msgstr "名称 / IP 地址"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "没有查询结果!" msgstr "没有查询结果!"
@ -460,7 +456,7 @@ msgstr "概览"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "'msmtp' 用于adblock通知电子邮件的配置文件。" msgstr "'msmtp' 用于adblock通知电子邮件的配置文件。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "查询" msgstr "查询"
@ -495,12 +491,12 @@ msgstr ""
"降低adblock后台处理的优先级以减少系统资源.请注意:此更改要求重新启动完整的" "降低adblock后台处理的优先级以减少系统资源.请注意:此更改要求重新启动完整的"
"adblock服务才能生效." "adblock服务才能生效."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "刷新" msgstr "刷新"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "刷新DNS报告" msgstr "刷新DNS报告"
@ -512,7 +508,7 @@ msgstr "刷新时间"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "刷新时间..." msgstr "刷新时间..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "刷新..." msgstr "刷新..."
@ -553,9 +549,11 @@ msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
"background." "background."
msgstr "在 DNS 后端载入后重置黑名单 \"adb_list.overall\"。请留意:此选项将在后台启动 ubus/adblock 微监控。" msgstr ""
"在 DNS 后端载入后重置黑名单 \"adb_list.overall\"。请留意:此选项将在后台启动 "
"ubus/adblock 微监控。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "结果" msgstr "结果"
@ -623,9 +621,9 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "开始日期" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -697,13 +695,13 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not." "'#' are allowed - ip addresses, wildcards and regex are not."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "时间" msgstr "时间"
@ -717,7 +715,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
@ -725,6 +723,10 @@ msgstr ""
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "触发延迟" msgstr "触发延迟"
@ -745,7 +747,7 @@ msgid ""
"take effect." "take effect."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
@ -757,7 +759,7 @@ msgstr ""
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -773,6 +775,18 @@ msgstr ""
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""
#~ msgid "DNS Requests (blocked)"
#~ msgstr "DNS请求已阻止"
#~ msgid "DNS Requests (total)"
#~ msgstr "DNS请求总计"
#~ msgid "End Date"
#~ msgstr "结束日期"
#~ msgid "Start Date"
#~ msgstr "开始日期"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -16,7 +16,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258
msgid "Action" msgid "Action"
msgstr "動作" msgstr "動作"
@ -73,7 +73,7 @@ msgstr "進階 E-Mail 設定"
msgid "Advanced Report Settings" msgid "Advanced Report Settings"
msgstr "進階報告設定" msgstr "進階報告設定"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Answer" msgid "Answer"
msgstr "回覆" msgstr "回覆"
@ -99,11 +99,15 @@ msgid ""
"take effect." "take effect."
msgstr "黑名單變更已儲存。更新您的 Adblock 清單,以使變更生效。" msgstr "黑名單變更已儲存。更新您的 Adblock 清單,以使變更生效。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:282
msgid "Blacklist..." msgid "Blacklist..."
msgstr "黑名單清單..." msgstr "黑名單清單..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:310
msgid "Blocked DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211
msgid "Blocked Domain" msgid "Blocked Domain"
msgstr "已封鎖的網域" msgstr "已封鎖的網域"
@ -119,7 +123,7 @@ msgstr "黑名單清單的備份"
msgid "Blocklist Query" msgid "Blocklist Query"
msgstr "封鎖清單查詢" msgstr "封鎖清單查詢"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Blocklist Query..." msgid "Blocklist Query..."
msgstr "黑名單查詢..." msgstr "黑名單查詢..."
@ -139,8 +143,8 @@ msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
@ -152,7 +156,7 @@ msgid ""
msgstr "" msgstr ""
"此頁籤上的變更需要完整重新啟動 adblock 服務才能生效。<br /><p>&#xa0;</p>" "此頁籤上的變更需要完整重新啟動 adblock 服務才能生效。<br /><p>&#xa0;</p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Client" msgid "Client"
msgstr "用戶端 Client" msgstr "用戶端 Client"
@ -167,9 +171,9 @@ msgstr ""
"\"https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md" "\"https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md"
"\" target=\"_blank\" rel=\"noreferrer noopener\" >檢視線上文件</a>" "\" target=\"_blank\" rel=\"noreferrer noopener\" >檢視線上文件</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
#: 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:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Count" msgid "Count"
msgstr "次數" msgstr "次數"
@ -198,19 +202,11 @@ msgstr "DNS 檔案重設"
msgid "DNS Report" msgid "DNS Report"
msgstr "DNS 報告" msgstr "DNS 報告"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNS 要求 (已封鎖)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "DNS 要求 (總計)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS 重新啟動逾時" msgstr "DNS 重新啟動逾時"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Date" msgid "Date"
msgstr "日期" msgstr "日期"
@ -232,8 +228,8 @@ msgstr "停用具有 自動載入/inotify 功能的 DNS 後端的 adblock 觸發
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "停用選擇性 DNS 白名單 (RPZ 通過)。" msgstr "停用選擇性 DNS 白名單 (RPZ 通過)。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Domain" msgid "Domain"
msgstr "網域" msgstr "網域"
@ -303,9 +299,9 @@ msgstr "在出現任何處理錯誤的情況下啟用詳細偵錯日誌記錄。
msgid "Enabled" msgid "Enabled"
msgstr "已啟用" 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:304
msgid "End Date" msgid "End Timestamp"
msgstr "結束日期" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "" msgid ""
@ -330,7 +326,7 @@ msgstr ""
"外部網域,用於檢查 DNS 後端是否成功重新啟動。請注意:要停用此檢查,請將此選項" "外部網域,用於檢查 DNS 後端是否成功重新啟動。請注意:要停用此檢查,請將此選項"
"設定為「false」。" "設定為「false」。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:157
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "篩選器條件,例如日期、網域或用戶端 (可選)" msgstr "篩選器條件,例如日期、網域或用戶端 (可選)"
@ -375,7 +371,7 @@ msgstr "黑名單目錄"
msgid "Last Run" msgid "Last Run"
msgstr "最後執行" msgstr "最後執行"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:337
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "最新的 DNS 要求" msgstr "最新的 DNS 要求"
@ -442,11 +438,11 @@ msgstr "日誌檢視"
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "低優先順序服務" msgstr "低優先順序服務"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
msgid "Name / IP Address" msgid "Name / IP Address"
msgstr "名稱 / IP 位址" msgstr "名稱 / IP 位址"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124
msgid "No Query results!" msgid "No Query results!"
msgstr "沒有查詢結果!" msgstr "沒有查詢結果!"
@ -463,7 +459,7 @@ msgstr "總覽"
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "「msmtp」用於 adblock 通知 E-Mail 的設定檔。" msgstr "「msmtp」用於 adblock 通知 E-Mail 的設定檔。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:132
msgid "Query" msgid "Query"
msgstr "查詢" msgstr "查詢"
@ -499,12 +495,12 @@ msgstr ""
"降低 adblock 背景處理的優先順序以減少系統資源。請注意:此變更要求完整重新啟" "降低 adblock 背景處理的優先順序以減少系統資源。請注意:此變更要求完整重新啟"
"動 adblock 服務才能生效。" "動 adblock 服務才能生效。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:184
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh" msgid "Refresh"
msgstr "更新" msgstr "更新"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:139
msgid "Refresh DNS Report" msgid "Refresh DNS Report"
msgstr "更新 DNS 報告" msgstr "更新 DNS 報告"
@ -516,7 +512,7 @@ msgstr "更新計時器"
msgid "Refresh Timer..." msgid "Refresh Timer..."
msgstr "更新計時器..." msgstr "更新計時器..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:325
msgid "Refresh..." msgid "Refresh..."
msgstr "更新..." msgstr "更新..."
@ -559,7 +555,7 @@ msgid ""
"background." "background."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:96
msgid "Result" msgid "Result"
msgstr "結果" msgstr "結果"
@ -627,9 +623,9 @@ msgstr ""
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "選取的下載公用程式的特殊設定選項。" 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:301
msgid "Start Date" msgid "Start Timestamp"
msgstr "開始日期" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
@ -710,13 +706,13 @@ msgstr ""
"這是永遠允許某些 (子) 網域的本地 adblock 白名單。<br />請注意:每行只加入一個" "這是永遠允許某些 (子) 網域的本地 adblock 白名單。<br />請注意:每行只加入一個"
"網域。允許使用「#」引入註解 - 不允許使用 ip 位址、萬用字元和規則運算式。" "網域。允許使用「#」引入註解 - 不允許使用 ip 位址、萬用字元和規則運算式。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:298
msgid "" msgid ""
"This shows the last generated DNS Report, press the refresh button to get a " "This shows the last generated DNS Report, press the refresh button to get a "
"current one." "current one."
msgstr "這顯示了上次產生的 DNS 報告,按下更新按鈕取得目前報告。" msgstr "這顯示了上次產生的 DNS 報告,按下更新按鈕取得目前報告。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Time" msgid "Time"
msgstr "時間" msgstr "時間"
@ -730,7 +726,7 @@ msgid ""
"job for these lists." "job for these lists."
msgstr "若要使 adblock 清單保持為最新,應為這些清單設定自動更新作業。" msgstr "若要使 adblock 清單保持為最新,應為這些清單設定自動更新作業。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:330
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "十大統計" msgstr "十大統計"
@ -738,6 +734,10 @@ msgstr "十大統計"
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "adblock 通知 E-Mail 的主旨。" msgstr "adblock 通知 E-Mail 的主旨。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Total DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "觸發延遲" msgstr "觸發延遲"
@ -758,7 +758,7 @@ msgid ""
"take effect." "take effect."
msgstr "白名單變更已儲存。更新 Adblock 清單以使變更生效。" msgstr "白名單變更已儲存。更新 Adblock 清單以使變更生效。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Whitelist..." msgid "Whitelist..."
msgstr "白名單..." msgstr "白名單..."
@ -770,7 +770,7 @@ msgstr "dnsmasq (/tmp/dnsmasq.d)"
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
@ -786,6 +786,18 @@ msgstr "raw (/tmp)"
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "DNS Requests (blocked)"
#~ msgstr "DNS 要求 (已封鎖)"
#~ msgid "DNS Requests (total)"
#~ msgstr "DNS 要求 (總計)"
#~ msgid "End Date"
#~ msgstr "結束日期"
#~ msgid "Start Date"
#~ msgstr "開始日期"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"