luci-app-adblock: more DNS Report tweaks
authorDirk Brenken <dev@brenken.org>
Sun, 12 Apr 2020 08:00:34 +0000 (10:00 +0200)
committerDirk Brenken <dev@brenken.org>
Sun, 12 Apr 2020 08:00:34 +0000 (10:00 +0200)
* 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>
31 files changed:
applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js
applications/luci-app-adblock/po/bg/adblock.po
applications/luci-app-adblock/po/ca/adblock.po
applications/luci-app-adblock/po/cs/adblock.po
applications/luci-app-adblock/po/de/adblock.po
applications/luci-app-adblock/po/el/adblock.po
applications/luci-app-adblock/po/en/adblock.po
applications/luci-app-adblock/po/es/adblock.po
applications/luci-app-adblock/po/fr/adblock.po
applications/luci-app-adblock/po/he/adblock.po
applications/luci-app-adblock/po/hi/adblock.po
applications/luci-app-adblock/po/hu/adblock.po
applications/luci-app-adblock/po/it/adblock.po
applications/luci-app-adblock/po/ja/adblock.po
applications/luci-app-adblock/po/ko/adblock.po
applications/luci-app-adblock/po/mr/adblock.po
applications/luci-app-adblock/po/ms/adblock.po
applications/luci-app-adblock/po/nb_NO/adblock.po
applications/luci-app-adblock/po/pl/adblock.po
applications/luci-app-adblock/po/pt/adblock.po
applications/luci-app-adblock/po/pt_BR/adblock.po
applications/luci-app-adblock/po/ro/adblock.po
applications/luci-app-adblock/po/ru/adblock.po
applications/luci-app-adblock/po/sk/adblock.po
applications/luci-app-adblock/po/sv/adblock.po
applications/luci-app-adblock/po/templates/adblock.pot
applications/luci-app-adblock/po/tr/adblock.po
applications/luci-app-adblock/po/uk/adblock.po
applications/luci-app-adblock/po/vi/adblock.po
applications/luci-app-adblock/po/zh_Hans/adblock.po
applications/luci-app-adblock/po/zh_Hant/adblock.po

index 1413f842c563f0c4953d4032e9960b210fa0798f..72823f02879bed7e58f8397b8fe20f3a5f24c583 100644 (file)
@@ -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 || '-'))]),
index 4e0dd080556f68da7a663e85a79cff3f74e80588..64693614097df8b24db3b59fb98773a5266cf83f 100644 (file)
@@ -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 ""
 
index 14d54df16c5df8ee1d4bbc694e51528cb24393fc..9fd234295307b94733c4d20e8b0b6c45bb5a0f96 100644 (file)
@@ -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 ""
 
index c8503bf6016f18857c1549dbf13324398953fffc..9c6ec4de7dc6f982c33939df83a8825e04dd218c 100644 (file)
@@ -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 ""
 
index 2aa7b1106e12ee1ec01b85a5fe3a59a393d82f07..665174f2d68aa6eb2a2ca6a338b39d28802e2c39 100644 (file)
@@ -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"
 
index 0f311cd7ff27c139068a4e6476cba068cb7f486a..38385d724fd7dcd05932c4d9ca11f55a2d858da4 100644 (file)
@@ -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 ""
 
index 70d08975878643b0efbb8abc914775d0c956e037..3dcf94b0dfba181fed7684b90154067caa2253cd 100644 (file)
@@ -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 ""
 
index 084d67ca805c6706108edc3b5078e75bc6478a63..e128ffd9101f08faee37fcebac6804fe6ab8d3bb 100644 (file)
@@ -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"
 
index ba0ad612bf36474fae3c916695d3fb705595b31a..e0ce474510d8909d604e4bf4deddd5df35f7ce7b 100644 (file)
@@ -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 ""
 
index 5a2498489d540ec001786f037af5ea9d20e16cab..5f597e4ef1b6ab82109590576a3b36ab6f1aa109 100644 (file)
@@ -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 ""
 
index e5786e035518705210e09b5805a073b5690acfe4..97d8e9d26fc81324344389d0ffd9f1796182538f 100644 (file)
@@ -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 ""
 
index b3fa6b3c4348a4bf2fb957b0d4fc58e8949cdb15..b472179ab1afd69bc589287eb7266de0fdb5f36c 100644 (file)
@@ -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 ""
 
index 8fd946fbab44134afa03fa514a36f772359300bb..c2ff20e49055e6adda0688b92c0fad69b95ffdba 100644 (file)
@@ -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 ""
 
index 333aa2a121de1f627803be04971bc5acef1cf60f..6138fd57c523a7a654aa0cda78ef91e8d03979ad 100644 (file)
@@ -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 ""
 
index 11f41eb1421b49935a69795eb5d2b3cd600a598f..c118cc8e5fbbf6f2f5a9bd5393d04a45dc32c85b 100644 (file)
@@ -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 ""
 
index c201dbaf24ada8bcd073936992a85c44eeeb886f..3f9bf92ac77beaaa81a3cb79017b46cba33962e1 100644 (file)
@@ -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 ""
 
index 59c05583a7041c9245f23d2eaf04630ed9afae98..9106a8e644bcfda57d433749a066152d8e36e0e2 100644 (file)
@@ -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 ""
 
index d6352ac6c16522ec27a94a49a7444fca56b48631..19d3b9efb54b8d3c133cec42aa24675200c9502f 100644 (file)
@@ -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 ""
 
index 64ffc6e232488f6367f0edd57428560c39f374c0..1c4f4470d718b68e2eda60b33cb9127df93b1121 100644 (file)
@@ -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"
 
index fb2b18d947ccc13f55d7572ed3954b754c6193e8..863ca32a83b95f409607e1373ad21c575331740f 100644 (file)
@@ -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 ""
 
index f19587e7bc70a744e1dd13544937d5e718410871..bdc6dbcd345b432cef501abb2619b232f6a7b5ff 100644 (file)
@@ -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"
 
index dbb86ced850b9e2c35ae7c7e4f08d2441f1e82ff..9bdd3450614582e0b796bfd82c2c1956e1c74043 100644 (file)
@@ -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 ""
 
index d190353a608cf3bd72a248d060f6998c5c7f1444..e0d45b7d59b4d6895d276c274af46802386c58c7 100644 (file)
@@ -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 ""
 
index 690625c42eff93e3a9f3912a9b7b82bba036fb3b..74bfdc4ac3f8ca79c0f7eb2c057d87f509fc7386 100644 (file)
@@ -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 ""
 
index 10d968f091d00228afce863126474ff9e705a82b..3cd129048f197d6ef0d6902f9a18a5cbf13e86e7 100644 (file)
@@ -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 ""
 
index d8a88b8bf03b2e281be0ef0f5fdc161332140522..eb4b5b1ebda150b0c28d629438481255f075fa26 100644 (file)
@@ -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 ""
 
index 28120962b7b07f164226f8ca664cc78e8a6c36a9..3e330e43778397346d656ee29af13d0642139d86 100644 (file)
@@ -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 ""
 
index 3b312b5a6c04e0eab8049a6084c99eb857e39139..3d3578e20919d3ab55be2a576ebdbf03ba1909f3 100644 (file)
@@ -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 ""
 
index 4727fe9a0d572e7fab999d67c98235422584a7fe..21998d7768146da2ce9daf459f517df3e9fcb9c5 100644 (file)
@@ -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 ""
 
index 92f1c30617b491591ffbbf648990b97ef28c4bd3..a70ca82afe162b683fea667845c20e381a2e5f23 100644 (file)
@@ -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 ""
 
index 0fc0da5416cc2e06f3dcde78da77568acb342877..43ee9d68894a08ddc269b61118ce1918bba356cc 100644 (file)
@@ -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 ""