Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Brenken <dev@brenken.org>2020-04-12 11:00:34 +0300
committerDirk Brenken <dev@brenken.org>2020-04-12 11:00:34 +0300
commit94799995aa3fc7961c6d6aea6d3105a29d550b3f (patch)
tree0a7454534a8416569b78054628be492e2ca15cc9 /applications
parent2c812fbd58fd7399969185cc501bdba561d98d95 (diff)
luci-app-adblock: more DNS Report tweaks
* revert last page loading change, this breaks the filter functionality on that page * Add a short paragraph to explain the page functionality * Fix search to accept ":" character as well (e.g. for IPv6 address search) Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js8
-rw-r--r--applications/luci-app-adblock/po/bg/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/ca/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/cs/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/de/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/el/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/en/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/es/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/fr/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/he/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/hi/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/hu/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/it/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/ja/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/ko/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/mr/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/ms/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/nb_NO/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/pl/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/pt/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/pt_BR/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/ro/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/ru/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/sk/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/sv/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/templates/adblock.pot22
-rw-r--r--applications/luci-app-adblock/po/tr/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/uk/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/vi/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/zh_Hans/adblock.po22
-rw-r--r--applications/luci-app-adblock/po/zh_Hant/adblock.po22
31 files changed, 425 insertions, 243 deletions
diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js
index 1413f842c5..72823f0287 100644
--- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js
+++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js
@@ -149,7 +149,7 @@ function handleAction(ev) {
])
]),
E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [
- E('input', { 'class': 'cbi-input-text', 'id': 'search' }, [
+ E('input', { 'class': 'cbi-input-text', 'spellcheck': 'false', 'id': 'search' }, [
]),
'\xa0\xa0\xa0',
_('Filter criteria like date, domain or client (optional)')
@@ -165,7 +165,7 @@ function handleAction(ev) {
'id': 'refresh',
'click': ui.createHandlerFn(this, async function(ev) {
var count = document.getElementById('count').value;
- var search = document.getElementById('search').value.trim().replace(/[^a-z0-9\.\-]/g,'') || '+';
+ var search = document.getElementById('search').value.trim().replace(/[^a-z0-9\.\-\:]/g,'') || '+';
L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', search, count, 'true', 'json']),'');
var running = 1;
while (running === 1) {
@@ -188,7 +188,7 @@ function handleAction(ev) {
return L.view.extend({
load: function() {
- return L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', '+', '50', 'true', 'json']),'');
+ return L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', '+', '50', 'false', 'json']),'');
},
render: function(dnsreport) {
@@ -293,6 +293,8 @@ return L.view.extend({
return E('div', { 'class': 'cbi-map', 'id': 'map' }, [
E('div', { 'class': 'cbi-section' }, [
+ E('p', _('This shows the last generated DNS Report, press the refresh button to get a current one.')),
+ E('p', '\xa0'),
E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Start Date')),
E('div', { 'class': 'cbi-value-field', 'id': 'start', 'style': 'margin-bottom:5px;margin-left:200px;color:#37c' }, (content.data.start_date || '-') + ', ' + (content.data.start_time || '-'))]),
diff --git a/applications/luci-app-adblock/po/bg/adblock.po b/applications/luci-app-adblock/po/bg/adblock.po
index 4e0dd08055..6469361409 100644
--- a/applications/luci-app-adblock/po/bg/adblock.po
+++ b/applications/luci-app-adblock/po/bg/adblock.po
@@ -106,7 +106,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -172,11 +172,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -277,7 +277,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -340,7 +340,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -458,7 +458,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -569,7 +569,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -643,6 +643,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -657,7 +663,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/ca/adblock.po b/applications/luci-app-adblock/po/ca/adblock.po
index 14d54df16c..9fd2342953 100644
--- a/applications/luci-app-adblock/po/ca/adblock.po
+++ b/applications/luci-app-adblock/po/ca/adblock.po
@@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "Reinicialització de fitxers del DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr "Activat"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Data de finalització"
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr "Darrera execució"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -466,7 +466,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -577,7 +577,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Data d’inici"
@@ -651,6 +651,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -665,7 +671,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/cs/adblock.po b/applications/luci-app-adblock/po/cs/adblock.po
index c8503bf601..9c6ec4de7d 100644
--- a/applications/luci-app-adblock/po/cs/adblock.po
+++ b/applications/luci-app-adblock/po/cs/adblock.po
@@ -113,7 +113,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -179,11 +179,11 @@ msgstr "Resetování souboru DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "Enabled"
msgstr "Zapnuto"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Datum ukončení"
@@ -347,7 +347,7 @@ msgstr ""
msgid "Last Run"
msgstr "Poslední spuštění"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -466,7 +466,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -577,7 +577,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Datum zahájení"
@@ -651,6 +651,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Čas"
@@ -665,7 +671,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/de/adblock.po b/applications/luci-app-adblock/po/de/adblock.po
index 2aa7b1106e..665174f2d6 100644
--- a/applications/luci-app-adblock/po/de/adblock.po
+++ b/applications/luci-app-adblock/po/de/adblock.po
@@ -118,7 +118,7 @@ msgstr "Backup der Sperrliste"
msgid "Blocklist Query"
msgstr "Sperrlistenabfrage"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr "Sperrlisten abfragen..."
@@ -193,11 +193,11 @@ msgstr "DNS-Datei zurücksetzen"
msgid "DNS Report"
msgstr "DNS-Report"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr "(blockierte) DNS-Abfragen"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr "DNS-Abfragen (gesamt)"
@@ -300,7 +300,7 @@ msgstr "Aktiviere ausführliche Debug-Logs im Fehlerfall."
msgid "Enabled"
msgstr "Aktiviert"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Enddatum"
@@ -368,7 +368,7 @@ msgstr "Jail-Verzeichnis"
msgid "Last Run"
msgstr "Letzter Lauf"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr "Letzte DNS-Abfragen"
@@ -512,7 +512,7 @@ msgstr "Aktualisiere Timer"
msgid "Refresh Timer..."
msgstr "Aktualisiere Timer..."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr "Aktualisiere..."
@@ -633,7 +633,7 @@ msgid "Special config options for the selected download utility."
msgstr ""
"Spezielle Konfigurationseinstellungen für das gewählte Download-Programm."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Startdatum"
@@ -721,6 +721,12 @@ msgstr ""
"Kommentare mit # am Anfang ebenfalls, nicht jedoch IP-Adressen, Wildcards "
"und Regex-Ausdrücke."
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Zeit"
@@ -737,7 +743,7 @@ msgstr ""
"Um die Adblock-Liste aktuell zu halten, sollte dafür ein automatischer "
"Update-Job eingerichtet werden."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr "Top-10 Statistiken"
diff --git a/applications/luci-app-adblock/po/el/adblock.po b/applications/luci-app-adblock/po/el/adblock.po
index 0f311cd7ff..38385d724f 100644
--- a/applications/luci-app-adblock/po/el/adblock.po
+++ b/applications/luci-app-adblock/po/el/adblock.po
@@ -112,7 +112,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -178,11 +178,11 @@ msgstr "Επαναφορά αρχείου DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -283,7 +283,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -346,7 +346,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -464,7 +464,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -575,7 +575,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -649,6 +649,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -663,7 +669,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/en/adblock.po b/applications/luci-app-adblock/po/en/adblock.po
index 70d0897587..3dcf94b0df 100644
--- a/applications/luci-app-adblock/po/en/adblock.po
+++ b/applications/luci-app-adblock/po/en/adblock.po
@@ -106,7 +106,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -172,11 +172,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -277,7 +277,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -340,7 +340,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -458,7 +458,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -569,7 +569,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -643,6 +643,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -657,7 +663,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/es/adblock.po b/applications/luci-app-adblock/po/es/adblock.po
index 084d67ca80..e128ffd910 100644
--- a/applications/luci-app-adblock/po/es/adblock.po
+++ b/applications/luci-app-adblock/po/es/adblock.po
@@ -121,7 +121,7 @@ msgstr "Copia de seguridad de lista de bloqueo"
msgid "Blocklist Query"
msgstr "Consulta de lista de bloqueo"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr "Consulta de lista de bloqueo..."
@@ -197,11 +197,11 @@ msgstr "Restablecimiento de archivos DNS"
msgid "DNS Report"
msgstr "Informe DNS"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr "Solicitudes DNS (bloqueadas)"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr "Solicitudes DNS (total)"
@@ -306,7 +306,7 @@ msgstr ""
msgid "Enabled"
msgstr "Activado"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Fecha final"
@@ -378,7 +378,7 @@ msgstr "Directorio de la cárcel"
msgid "Last Run"
msgstr "Último inicio"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr "Últimas solicitudes de DNS"
@@ -520,7 +520,7 @@ msgstr "Actualizar temporizador"
msgid "Refresh Timer..."
msgstr "Actualizar temporizador..."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr "Actualizar..."
@@ -644,7 +644,7 @@ msgstr ""
"Opciones de configuración especiales para la utilidad de descarga "
"seleccionada."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Fecha de inicio"
@@ -737,6 +737,12 @@ msgstr ""
"línea. Los comentarios introducidos con '#' están permitidos; las "
"direcciones IP, comodines y expresiones regulares no."
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Hora"
@@ -753,7 +759,7 @@ msgstr ""
"Para mantener sus listas de bloqueos de anuncios actualizadas, debe "
"configurar un trabajo de actualización automática para estas listas."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr "Top 10 estadísticas"
diff --git a/applications/luci-app-adblock/po/fr/adblock.po b/applications/luci-app-adblock/po/fr/adblock.po
index ba0ad612bf..e0ce474510 100644
--- a/applications/luci-app-adblock/po/fr/adblock.po
+++ b/applications/luci-app-adblock/po/fr/adblock.po
@@ -114,7 +114,7 @@ msgstr "Sauvegarde de la liste de blocage"
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "Réinitialiser le fichier de DNS"
msgid "DNS Report"
msgstr "Rapport DNS"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr "Requêtes DNS (bloquées)"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr "Requêtes DNS (totales)"
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr "Activé"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Date de fin"
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr "Dernière exécution"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -470,7 +470,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -581,7 +581,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Date de début"
@@ -657,6 +657,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Heure"
@@ -671,7 +677,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/he/adblock.po b/applications/luci-app-adblock/po/he/adblock.po
index 5a2498489d..5f597e4ef1 100644
--- a/applications/luci-app-adblock/po/he/adblock.po
+++ b/applications/luci-app-adblock/po/he/adblock.po
@@ -106,7 +106,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -172,11 +172,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -277,7 +277,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -340,7 +340,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -458,7 +458,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -569,7 +569,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -643,6 +643,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -657,7 +663,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/hi/adblock.po b/applications/luci-app-adblock/po/hi/adblock.po
index e5786e0355..97d8e9d26f 100644
--- a/applications/luci-app-adblock/po/hi/adblock.po
+++ b/applications/luci-app-adblock/po/hi/adblock.po
@@ -106,7 +106,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -172,11 +172,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -277,7 +277,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -340,7 +340,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -458,7 +458,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -569,7 +569,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -643,6 +643,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -657,7 +663,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/hu/adblock.po b/applications/luci-app-adblock/po/hu/adblock.po
index b3fa6b3c43..b472179ab1 100644
--- a/applications/luci-app-adblock/po/hu/adblock.po
+++ b/applications/luci-app-adblock/po/hu/adblock.po
@@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "DNS fájlvisszaállítás"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr "Engedélyezve"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Befejezési dátum"
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr "Utolsó futás"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -467,7 +467,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -578,7 +578,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Kezdődátum"
@@ -654,6 +654,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Idő"
@@ -668,7 +674,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/it/adblock.po b/applications/luci-app-adblock/po/it/adblock.po
index 8fd946fbab..c2ff20e490 100644
--- a/applications/luci-app-adblock/po/it/adblock.po
+++ b/applications/luci-app-adblock/po/it/adblock.po
@@ -115,7 +115,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -181,11 +181,11 @@ msgstr "Reset File DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -286,7 +286,7 @@ msgstr ""
msgid "Enabled"
msgstr "Abilitato"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Data Fine"
@@ -349,7 +349,7 @@ msgstr ""
msgid "Last Run"
msgstr "Ultimo Avvio"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -469,7 +469,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -580,7 +580,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -655,6 +655,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -669,7 +675,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po
index 333aa2a121..6138fd57c5 100644
--- a/applications/luci-app-adblock/po/ja/adblock.po
+++ b/applications/luci-app-adblock/po/ja/adblock.po
@@ -113,7 +113,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -179,11 +179,11 @@ msgstr "DNS ファイル リセット"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "Enabled"
msgstr "有効"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "終了日"
@@ -347,7 +347,7 @@ msgstr ""
msgid "Last Run"
msgstr "最終実行"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -465,7 +465,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -576,7 +576,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "開始日"
@@ -650,6 +650,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "時刻"
@@ -664,7 +670,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/ko/adblock.po b/applications/luci-app-adblock/po/ko/adblock.po
index 11f41eb142..c118cc8e5f 100644
--- a/applications/luci-app-adblock/po/ko/adblock.po
+++ b/applications/luci-app-adblock/po/ko/adblock.po
@@ -106,7 +106,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -172,11 +172,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -277,7 +277,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -340,7 +340,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -458,7 +458,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -569,7 +569,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -643,6 +643,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -657,7 +663,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/mr/adblock.po b/applications/luci-app-adblock/po/mr/adblock.po
index c201dbaf24..3f9bf92ac7 100644
--- a/applications/luci-app-adblock/po/mr/adblock.po
+++ b/applications/luci-app-adblock/po/mr/adblock.po
@@ -112,7 +112,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -178,11 +178,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -283,7 +283,7 @@ msgstr ""
msgid "Enabled"
msgstr "सक्षम केले"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -346,7 +346,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -464,7 +464,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -575,7 +575,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -649,6 +649,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -663,7 +669,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/ms/adblock.po b/applications/luci-app-adblock/po/ms/adblock.po
index 59c05583a7..9106a8e644 100644
--- a/applications/luci-app-adblock/po/ms/adblock.po
+++ b/applications/luci-app-adblock/po/ms/adblock.po
@@ -112,7 +112,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -178,11 +178,11 @@ msgstr "Reset fail DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -283,7 +283,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -346,7 +346,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -464,7 +464,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -575,7 +575,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -649,6 +649,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -663,7 +669,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/nb_NO/adblock.po b/applications/luci-app-adblock/po/nb_NO/adblock.po
index d6352ac6c1..19d3b9efb5 100644
--- a/applications/luci-app-adblock/po/nb_NO/adblock.po
+++ b/applications/luci-app-adblock/po/nb_NO/adblock.po
@@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "DNS-filtilbakestilling"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr "Aktivert"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Sluttdato"
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr "Sist kjørt"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -466,7 +466,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -577,7 +577,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -651,6 +651,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -665,7 +671,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/pl/adblock.po b/applications/luci-app-adblock/po/pl/adblock.po
index 64ffc6e232..1c4f4470d7 100644
--- a/applications/luci-app-adblock/po/pl/adblock.po
+++ b/applications/luci-app-adblock/po/pl/adblock.po
@@ -119,7 +119,7 @@ msgstr "Kopia zapasowa listy zablokowanych"
msgid "Blocklist Query"
msgstr "Zapytanie do list blokujących"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr "Zapytanie..."
@@ -195,11 +195,11 @@ msgstr "Resetuj plik DNS"
msgid "DNS Report"
msgstr "Raport DNS"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr "Żądania DNS (zablokowane)"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr "Żądania DNS (ogółem)"
@@ -303,7 +303,7 @@ msgstr ""
msgid "Enabled"
msgstr "Włączone"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Data końcowa"
@@ -374,7 +374,7 @@ msgstr "Katalog więzienia"
msgid "Last Run"
msgstr "Ostatnie uruchomienie"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr "Ostatnie zapytania DNS"
@@ -516,7 +516,7 @@ msgstr "Odśwież Timer"
msgid "Refresh Timer..."
msgstr "Odświeżanie Timera..."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr "Odświeżanie..."
@@ -635,7 +635,7 @@ msgstr "Rozdzielona spacjami lista portów używanych przez tcpdump."
msgid "Special config options for the selected download utility."
msgstr "Specjalne opcje konfiguracji dla wybranego narzędzia do pobierania."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Data rozpoczęcia"
@@ -724,6 +724,12 @@ msgstr ""
"<br /> Uwaga: dodaj tylko jedną domenę na linię. Komentarze wprowadzone z "
"'#' są dozwolone - adresy ip, wildcards i regex nie są dozwolone."
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Czas"
@@ -740,7 +746,7 @@ msgstr ""
"Aby twoje listy były aktualne, powinieneś ustawić automatyczne zadanie "
"aktualizacji dla tych list."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr "Top 10"
diff --git a/applications/luci-app-adblock/po/pt/adblock.po b/applications/luci-app-adblock/po/pt/adblock.po
index fb2b18d947..863ca32a83 100644
--- a/applications/luci-app-adblock/po/pt/adblock.po
+++ b/applications/luci-app-adblock/po/pt/adblock.po
@@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "Repor o ficheiro DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr "Ativado"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Data final"
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr "Última Execução"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -468,7 +468,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -579,7 +579,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Data de Início"
@@ -656,6 +656,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Tempo"
@@ -670,7 +676,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/pt_BR/adblock.po b/applications/luci-app-adblock/po/pt_BR/adblock.po
index f19587e7bc..bdc6dbcd34 100644
--- a/applications/luci-app-adblock/po/pt_BR/adblock.po
+++ b/applications/luci-app-adblock/po/pt_BR/adblock.po
@@ -122,7 +122,7 @@ msgstr "Cópia de Segurança da Lista de Bloqueio"
msgid "Blocklist Query"
msgstr "Consulta na Lista de Bloqueio"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr "Pesquisando a Lista de Bloqueio..."
@@ -198,11 +198,11 @@ msgstr "Zerar Arquivo de DNS"
msgid "DNS Report"
msgstr "Relatório do DNS"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr "Solicitações do DNS (bloqueadas)"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr "Solicitações do DNS (total)"
@@ -307,7 +307,7 @@ msgstr ""
msgid "Enabled"
msgstr "Ativado"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Data Final"
@@ -379,7 +379,7 @@ msgstr "Diretório Prisional"
msgid "Last Run"
msgstr "Última Execução"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr "As últimas solicitações do DNS"
@@ -528,7 +528,7 @@ msgstr "Atualizar Temporizador"
msgid "Refresh Timer..."
msgstr "Atualizando o Temporizador..."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr "Atualizar..."
@@ -650,7 +650,7 @@ msgid "Special config options for the selected download utility."
msgstr ""
"Opções especiais de configuração para o utilitário de download selecionado."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Data de Início"
@@ -741,6 +741,12 @@ msgstr ""
"Comentários introduzidos com '#' são permitidos - endereços ip, curingas e "
"regex não são."
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Tempo"
@@ -757,7 +763,7 @@ msgstr ""
"Para manter as suas listas de bloqueio de anúncios atualizadas, você deve "
"configurar uma tarefa de atualização automática para essas listas."
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr "As 10 Estatísticas Principais"
diff --git a/applications/luci-app-adblock/po/ro/adblock.po b/applications/luci-app-adblock/po/ro/adblock.po
index dbb86ced85..9bdd345061 100644
--- a/applications/luci-app-adblock/po/ro/adblock.po
+++ b/applications/luci-app-adblock/po/ro/adblock.po
@@ -115,7 +115,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -181,11 +181,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -286,7 +286,7 @@ msgstr ""
msgid "Enabled"
msgstr "Activat"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Data sfârşit"
@@ -349,7 +349,7 @@ msgstr ""
msgid "Last Run"
msgstr "Ultima rulare"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -467,7 +467,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -578,7 +578,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Data de început"
@@ -652,6 +652,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -666,7 +672,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/ru/adblock.po b/applications/luci-app-adblock/po/ru/adblock.po
index d190353a60..e0d45b7d59 100644
--- a/applications/luci-app-adblock/po/ru/adblock.po
+++ b/applications/luci-app-adblock/po/ru/adblock.po
@@ -125,7 +125,7 @@ msgstr "Бэкап черного списка"
msgid "Blocklist Query"
msgstr "Блокировка запросов"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
#, fuzzy
msgid "Blocklist Query..."
msgstr "Заблокировать запрос..."
@@ -205,11 +205,11 @@ msgstr "Сброс файла DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -310,7 +310,7 @@ msgstr ""
msgid "Enabled"
msgstr "Включено"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Дата окончания"
@@ -373,7 +373,7 @@ msgstr ""
msgid "Last Run"
msgstr "Последний запуск"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -493,7 +493,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -604,7 +604,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "Дата начала"
@@ -680,6 +680,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Время"
@@ -694,7 +700,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/sk/adblock.po b/applications/luci-app-adblock/po/sk/adblock.po
index 690625c42e..74bfdc4ac3 100644
--- a/applications/luci-app-adblock/po/sk/adblock.po
+++ b/applications/luci-app-adblock/po/sk/adblock.po
@@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "Inicializácia DNS súboru"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr "Zapnuté"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Koncový dátum"
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -466,7 +466,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -577,7 +577,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -651,6 +651,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -665,7 +671,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/sv/adblock.po b/applications/luci-app-adblock/po/sv/adblock.po
index 10d968f091..3cd129048f 100644
--- a/applications/luci-app-adblock/po/sv/adblock.po
+++ b/applications/luci-app-adblock/po/sv/adblock.po
@@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "DNS-filåterställning"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr "Aktiverad"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "Slutdatum"
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr "Kördes senast"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -466,7 +466,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -577,7 +577,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -651,6 +651,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -665,7 +671,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot
index d8a88b8bf0..eb4b5b1ebd 100644
--- a/applications/luci-app-adblock/po/templates/adblock.pot
+++ b/applications/luci-app-adblock/po/templates/adblock.pot
@@ -103,7 +103,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -169,11 +169,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -274,7 +274,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -337,7 +337,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -455,7 +455,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -566,7 +566,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -640,6 +640,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -654,7 +660,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/tr/adblock.po b/applications/luci-app-adblock/po/tr/adblock.po
index 28120962b7..3e330e4377 100644
--- a/applications/luci-app-adblock/po/tr/adblock.po
+++ b/applications/luci-app-adblock/po/tr/adblock.po
@@ -113,7 +113,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -466,7 +466,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -577,7 +577,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -651,6 +651,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -665,7 +671,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/uk/adblock.po b/applications/luci-app-adblock/po/uk/adblock.po
index 3b312b5a6c..3d3578e209 100644
--- a/applications/luci-app-adblock/po/uk/adblock.po
+++ b/applications/luci-app-adblock/po/uk/adblock.po
@@ -113,7 +113,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -179,11 +179,11 @@ msgstr ""
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "Enabled"
msgstr "Увімкнено"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -347,7 +347,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -465,7 +465,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -576,7 +576,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -650,6 +650,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr ""
@@ -664,7 +670,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/vi/adblock.po b/applications/luci-app-adblock/po/vi/adblock.po
index 4727fe9a0d..21998d7768 100644
--- a/applications/luci-app-adblock/po/vi/adblock.po
+++ b/applications/luci-app-adblock/po/vi/adblock.po
@@ -113,7 +113,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -180,11 +180,11 @@ msgstr "Đặt lại tệp DNS"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -285,7 +285,7 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr ""
@@ -348,7 +348,7 @@ msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -466,7 +466,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -577,7 +577,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr ""
@@ -651,6 +651,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "Thời gian"
@@ -665,7 +671,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/zh_Hans/adblock.po b/applications/luci-app-adblock/po/zh_Hans/adblock.po
index 92f1c30617..a70ca82afe 100644
--- a/applications/luci-app-adblock/po/zh_Hans/adblock.po
+++ b/applications/luci-app-adblock/po/zh_Hans/adblock.po
@@ -119,7 +119,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr "拦截列表查询"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -185,11 +185,11 @@ msgstr "DNS 文件重置"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -290,7 +290,7 @@ msgstr ""
msgid "Enabled"
msgstr "已启用"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "结束日期"
@@ -353,7 +353,7 @@ msgstr ""
msgid "Last Run"
msgstr "最后运行"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -471,7 +471,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -582,7 +582,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "开始日期"
@@ -656,6 +656,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "时间"
@@ -670,7 +676,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""
diff --git a/applications/luci-app-adblock/po/zh_Hant/adblock.po b/applications/luci-app-adblock/po/zh_Hant/adblock.po
index 0fc0da5416..43ee9d6889 100644
--- a/applications/luci-app-adblock/po/zh_Hant/adblock.po
+++ b/applications/luci-app-adblock/po/zh_Hant/adblock.po
@@ -118,7 +118,7 @@ msgstr ""
msgid "Blocklist Query"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:314
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:316
msgid "Blocklist Query..."
msgstr ""
@@ -184,11 +184,11 @@ msgstr "DNS檔案重置"
msgid "DNS Report"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "DNS Requests (blocked)"
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "DNS Requests (total)"
msgstr ""
@@ -289,7 +289,7 @@ msgstr ""
msgid "Enabled"
msgstr "啟用"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:302
msgid "End Date"
msgstr "結束日期"
@@ -352,7 +352,7 @@ msgstr ""
msgid "Last Run"
msgstr "最後執行"
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:333
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:335
msgid "Latest DNS Requests"
msgstr ""
@@ -470,7 +470,7 @@ msgstr ""
msgid "Refresh Timer..."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Refresh..."
msgstr ""
@@ -581,7 +581,7 @@ msgstr ""
msgid "Special config options for the selected download utility."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:299
msgid "Start Date"
msgstr "開始日期"
@@ -655,6 +655,12 @@ msgid ""
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:296
+msgid ""
+"This shows the last generated DNS Report, press the refresh button to get a "
+"current one."
+msgstr ""
+
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Time"
msgstr "時間"
@@ -669,7 +675,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:326
+#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:328
msgid "Top 10 Statistics"
msgstr ""