From ad2ec4eb658efab83222031ed3b6bd42609cfbc3 Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Sat, 17 Apr 2021 10:02:23 +0200 Subject: [PATCH] luci-app-adblock: sync with adblock 4.1.1 * support new RPZ-Trigger 'RPZ-CLIENT-IP' (currently bind only) * Reporting tweaks/mailing * cosmetics * sync translations Signed-off-by: Dirk Brenken --- .../resources/view/adblock/dnsreport.js | 10 +- .../resources/view/adblock/overview.js | 28 +- .../luci-app-adblock/po/ar/adblock.po | 309 +++++++++-------- .../luci-app-adblock/po/bg/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/bn_BD/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/ca/adblock.po | 295 ++++++++-------- .../luci-app-adblock/po/cs/adblock.po | 298 +++++++++-------- .../luci-app-adblock/po/de/adblock.po | 309 +++++++++-------- .../luci-app-adblock/po/el/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/en/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/es/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/fi/adblock.po | 295 ++++++++-------- .../luci-app-adblock/po/fr/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/he/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/hi/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/hu/adblock.po | 292 ++++++++-------- .../luci-app-adblock/po/it/adblock.po | 292 ++++++++-------- .../luci-app-adblock/po/ja/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/ko/adblock.po | 295 ++++++++-------- .../luci-app-adblock/po/mr/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/ms/adblock.po | 292 ++++++++-------- .../luci-app-adblock/po/nb_NO/adblock.po | 301 +++++++++-------- .../luci-app-adblock/po/pl/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/pt/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/pt_BR/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/ro/adblock.po | 300 +++++++++-------- .../luci-app-adblock/po/ru/adblock.po | 309 +++++++++-------- .../luci-app-adblock/po/si/adblock.po | 292 ++++++++-------- .../luci-app-adblock/po/sk/adblock.po | 292 ++++++++-------- .../luci-app-adblock/po/sv/adblock.po | 303 +++++++++-------- .../luci-app-adblock/po/templates/adblock.pot | 289 ++++++++-------- .../luci-app-adblock/po/tr/adblock.po | 303 +++++++++-------- .../luci-app-adblock/po/uk/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/vi/adblock.po | 292 ++++++++-------- .../luci-app-adblock/po/zh_Hans/adblock.po | 316 ++++++++++-------- .../luci-app-adblock/po/zh_Hant/adblock.po | 306 +++++++++-------- .../share/rpcd/acl.d/luci-app-adblock.json | 2 +- 37 files changed, 5510 insertions(+), 4658 deletions(-) diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js index 1b245ecde6..d594ec9ec3 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js @@ -168,7 +168,7 @@ function handleAction(ev) { 'click': ui.createHandlerFn(this, async function(ev) { var count = document.getElementById('count').value; var search = document.getElementById('search').value.trim().replace(/[^\w\.\-\:]/g,'') || '+'; - L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', search, count, 'true', 'json']),''); + L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', 'gen', count, search]),''); var running = 1; while (running === 1) { await new Promise(r => setTimeout(r, 1000)); @@ -190,7 +190,7 @@ function handleAction(ev) { return view.extend({ load: function() { - return L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', '+', '50', 'false', 'json']),''); + return L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', 'json', '50', '+']),''); }, render: function(dnsreport) { @@ -204,11 +204,11 @@ return view.extend({ var tbl_top = E('table', { 'class': 'table', 'id': 'top_10' }, [ E('tr', { 'class': 'tr table-titles' }, [ E('th', { 'class': 'th right' }, _('Count')), - E('th', { 'class': 'th' }, _('Name / IP Address')), + E('th', { 'class': 'th' }, _('Clients')), E('th', { 'class': 'th right' }, _('Count')), - E('th', { 'class': 'th' }, _('Domain')), + E('th', { 'class': 'th' }, _('Domains')), E('th', { 'class': 'th right' }, _('Count')), - E('th', { 'class': 'th' }, _('Blocked Domain')) + E('th', { 'class': 'th' }, _('Blocked Domains')) ]) ]); diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js index 5c6b833141..468e8a3421 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js @@ -30,7 +30,11 @@ function handleAction(ev) { E('select', { 'class': 'cbi-input-select', 'id': 'timerA' }, [ E('option', { 'value': 'start' }, 'Start'), E('option', { 'value': 'reload' }, 'Reload'), - E('option', { 'value': 'restart' }, 'Restart') + E('option', { 'value': 'restart' }, 'Restart'), + E('option', { 'value': 'suspend' }, 'Suspend'), + E('option', { 'value': 'resume' }, 'Resume'), + E('option', { 'value': 'report gen' }, 'Report'), + E('option', { 'value': 'report mail' }, 'Report & Mail') ]), '\xa0\xa0\xa0', _('Adblock action') @@ -374,7 +378,7 @@ return view.extend({ o = s.taboption('additional', form.Value, 'adb_triggerdelay', _('Trigger Delay'), _('Additional trigger delay in seconds before adblock processing begins.')); o.placeholder = '2'; - o.datatype = 'range(1,120)'; + o.datatype = 'range(1,300)'; o.rmempty = true; o = s.taboption('additional', form.ListValue, 'adb_maxqueue', _('Download Queue'), _('Size of the download queue for download processing (incl. sorting, merging etc.) in parallel.')); @@ -401,11 +405,11 @@ return view.extend({ o.rmempty = true; o = s.taboption('additional', form.ListValue, 'adb_fetchutil', _('Download Utility'), _('List of supported and fully pre-configured download utilities.')); - o.value('', _('- unspecified -')); o.value('uclient-fetch'); o.value('wget'); o.value('curl'); o.value('aria2c'); + o.optional = true; o.rmempty = true; o = s.taboption('additional', form.Value, 'adb_fetchparm', _('Download Parameters'), _('Special config options for the selected download utility.')); @@ -416,12 +420,12 @@ return view.extend({ */ o = s.taboption('adv_dns', form.ListValue, 'adb_dns', _('DNS Backend'), _('List of supported DNS backends with their default list directory. \ To overwrite the default path use the \'DNS Directory\' option.')); - o.value('', _('- unspecified -')); o.value('dnsmasq', _('dnsmasq (/tmp/dnsmasq.d)')); o.value('unbound', _('unbound (/var/lib/unbound)')); - o.value('named', _('named (/var/lib/bind)')); + o.value('named', _('bind (/var/lib/bind)')); o.value('kresd', _('kresd (/etc/kresd)')); o.value('raw', _('raw (/tmp)')); + o.optional = true; o.rmempty = true; o = s.taboption('adv_dns', form.Value, 'adb_dnsdir', _('DNS Directory'), _('Target directory for the generated blocklist \'adb_list.overall\'.')); @@ -441,7 +445,19 @@ return view.extend({ o = s.taboption('adv_dns', form.Flag, 'adb_dnsflush', _('Flush DNS Cache'), _('Flush the DNS Cache before adblock processing as well.')); o.rmempty = true; - o = s.taboption('adv_dns', form.Flag, 'adb_dnsallow', _('Disable DNS Allow'), _('Disable selective DNS whitelisting (RPZ pass through).')); + o = s.taboption('adv_dns', form.Flag, 'adb_dnsallow', _('Disable DNS Allow'), _('Disable selective DNS whitelisting (RPZ-PASSTHRU).')); + o.rmempty = true; + + o = s.taboption('adv_dns', form.DynamicList, 'adb_denyip', _('Block Local Client IPs'), _('Block all requests of certain DNS clients based on their IP address (RPZ-CLIENT-IP). \ + Please note: This feature is currently only supported by bind DNS backend.')); + o.datatype = 'or(ip4addr("nomask"),ip6addr("nomask"))'; + o.optional = true; + o.rmempty = true; + + o = s.taboption('adv_dns', form.DynamicList, 'adb_allowip', _('Allow Local Client IPs'), _('Allow all requests of certain DNS clients based on their IP address (RPZ-CLIENT-IP). \ + Please note: This feature is currently only supported by bind DNS backend.')); + o.datatype = 'or(ip4addr("nomask"),ip6addr("nomask"))'; + o.optional = true; o.rmempty = true; o = s.taboption('adv_dns', form.Flag, 'adb_jail', _('Additional Jail Blocklist'), _('Builds an additional DNS blocklist to block access to all domains except those listed in the whitelist. \ diff --git a/applications/luci-app-adblock/po/ar/adblock.po b/applications/luci-app-adblock/po/ar/adblock.po index 5649c3c91b..1420122a6a 100644 --- a/applications/luci-app-adblock/po/ar/adblock.po +++ b/applications/luci-app-adblock/po/ar/adblock.po @@ -11,16 +11,11 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- غير محدد -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "إجراء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "المصادر المفعّلة" @@ -29,7 +24,7 @@ msgstr "المصادر المفعّلة" msgid "Adblock" msgstr "أدبلوك" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "إجراء أدبلوك" @@ -49,43 +44,54 @@ msgstr "أضف هذا النطاق (الفرعي) لقائمتك السوداء msgid "Add this (sub-)domain to your local whitelist." msgstr "أضف هذا النطاق (الفرعي) لقائمتك المسموحة المحلية." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "قائمة حظر إضافية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "إعدادات إضافية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "وقت انتظار إضافي بالثواني قبل الشروع في تطبيق إعدادات أدبلوك." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "إعدادات DNS متقدمة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "إعدادات متقدمة للبريد الالكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "إعدادات متقدمة للتقارير" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "إجابة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "مجلد النسخ الاحتياطي" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "مجلد التخزين المؤقت الأساسي" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,19 +112,27 @@ msgstr "" msgid "Blacklist..." msgstr "القائمة السوداء..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "طلبات DNS المحظورة" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "نطاق محظور" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "نطاقات محظورة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "نسخة احتياطية لقائمة الحظر" @@ -130,11 +144,11 @@ msgstr "استعلام لقائمة الحظر" msgid "Blocklist Query..." msgstr "استعلام لقائمة الحظر..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "مصادر قائمة الحظر" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -148,12 +162,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "إلغاء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "فئات" @@ -161,7 +175,11 @@ msgstr "فئات" msgid "Client" msgstr "العميل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/bg/adblock.po b/applications/luci-app-adblock/po/bg/adblock.po index 61a50b2a10..082cdef299 100644 --- a/applications/luci-app-adblock/po/bg/adblock.po +++ b/applications/luci-app-adblock/po/bg/adblock.po @@ -4,16 +4,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -22,7 +17,7 @@ msgstr "" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -42,43 +37,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -95,19 +101,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -119,11 +133,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -134,12 +148,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -147,7 +161,11 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information
=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- nespecifikováno -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akce" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Aktivní zdroje" @@ -28,7 +23,7 @@ msgstr "Aktivní zdroje" msgid "Adblock" msgstr "Blokování reklamy Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Akce Adblocku" @@ -48,44 +43,55 @@ msgstr "Přidejte tuto (sub)doménu na místní blacklist." msgid "Add this (sub-)domain to your local whitelist." msgstr "Přidat tuto (sub)doménu na místní whitelist." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Další nastavení" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatečné zpoždění v sekundách před začátkem zpracování blokování reklamy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Pokročilá nastavení DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Pokročilá nastavení e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Pokročilá nastavení hlášení" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpověd" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Záložní adresář" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Základní dočasný adresář" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,19 +112,27 @@ msgstr "" msgid "Blacklist..." msgstr "Blacklist..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Blokované domény" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Záloha blokovacího seznamu" @@ -130,11 +144,11 @@ msgstr "Dotaz na blokovací seznam" msgid "Blocklist Query..." msgstr "Dotaz na blokovací seznam..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Zdroje seznamů blokování" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -145,12 +159,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Storno" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -158,7 +172,11 @@ msgstr "" msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/el/adblock.po b/applications/luci-app-adblock/po/el/adblock.po index 25f068404a..b1bafe7267 100644 --- a/applications/luci-app-adblock/po/el/adblock.po +++ b/applications/luci-app-adblock/po/el/adblock.po @@ -10,16 +10,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Ενεργές πηγές" @@ -28,7 +23,7 @@ msgstr "Ενεργές πηγές" msgid "Adblock" msgstr "αντιδιαφημιστικό" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -48,43 +43,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Επιπρόσθετες ρυθμίσεις" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Σύνθετες ρυθμίσεις DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Προηγμένες ρυθμίσεις ηλεκτρονικού ταχυδρομείου" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Σύνθετες ρυθμίσεις αναφοράς" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Απάντηση" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "φάκελος διάσωσης" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -101,19 +107,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Αποκλεισμένα αιτήματα DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -125,11 +139,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Λίστα Μπλοκαρισμένων πηγών" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -140,12 +154,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Ακύρωση" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -153,7 +167,11 @@ msgstr "" msgid "Client" msgstr "πελάτης" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/fi/adblock.po b/applications/luci-app-adblock/po/fi/adblock.po index 585df55361..ce3bc7b6ff 100644 --- a/applications/luci-app-adblock/po/fi/adblock.po +++ b/applications/luci-app-adblock/po/fi/adblock.po @@ -10,16 +10,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Toiminta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Aktiiviset lähteet" @@ -28,7 +23,7 @@ msgstr "Aktiiviset lähteet" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Adblockin toimi" @@ -48,44 +43,55 @@ msgstr "Lisää tämä (ali-)verkkonimi kieltolistallesi." msgid "Add this (sub-)domain to your local whitelist." msgstr "Lisää tämä (ali-)verkkonimi sallittujen listallesi." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Lisäasetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Ylimääräinen odotusaika sekunteina ennen adblock-käsittelyn aloittamista." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "DNS-lisäasetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Sähköpostin lisäasetukset" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Raportoinnin lisäasetukset" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Vastaus" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Varmuuskopiohakemisto" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Oletushakemisto väliaikaistiedostoille" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,19 +112,27 @@ msgstr "" msgid "Blacklist..." msgstr "Kieltolista..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Estetty verkkonimi" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Estetyt verkkonimet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Kieltolistan varmuuskopio" @@ -130,11 +144,11 @@ msgstr "Estolistan kysely" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Estolistojen lähteet" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -145,12 +159,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Peruuta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -158,7 +172,11 @@ msgstr "" msgid "Client" msgstr "Asiakas" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information
1;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- non spécifié -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Action" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Sources Actives" @@ -28,7 +23,7 @@ msgstr "Sources Actives" msgid "Adblock" msgstr "Bloqueur de publicité" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Action Adblock" @@ -48,45 +43,56 @@ msgstr "Ajout sous-domaine au réseau local blacklisté." msgid "Add this (sub-)domain to your local whitelist." msgstr "Ajout sous-domaine au réseau local whitelisté." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Additionnel Bannis Blocklisté" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Paramètres additionnels" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Délai de déclenchement supplémentaire en secondes avant que le bloqueur de " "publicité démarre." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Paramètres DNS avancés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Paramètres de messagerie électronique avancés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Paramètres de rapport avancés" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Répondre" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Répertoire de sauvegarde" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Répertoire Temporaire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -107,19 +113,27 @@ msgstr "" msgid "Blacklist..." msgstr "Liste noire ..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Domaines bloqués" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Domaines bloqués" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Sauvegarde de la liste de blocage" @@ -131,11 +145,11 @@ msgstr "Demande Blocklist" msgid "Blocklist Query..." msgstr "Demande Blocklist..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Sources des listes de blocage" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -150,12 +164,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Annuler" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -163,7 +177,11 @@ msgstr "" msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/he/adblock.po b/applications/luci-app-adblock/po/he/adblock.po index 63aaa30a82..d62ff2e4ac 100644 --- a/applications/luci-app-adblock/po/he/adblock.po +++ b/applications/luci-app-adblock/po/he/adblock.po @@ -11,16 +11,11 @@ msgstr "" "n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -29,7 +24,7 @@ msgstr "" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -49,43 +44,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -102,19 +108,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -126,11 +140,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -141,12 +155,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "ביטול" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -154,7 +168,11 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po index e14e59eac7..bb87043c2f 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -13,16 +13,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "詳細不明" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "アクション" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "アクティブなソース" @@ -31,7 +26,7 @@ msgstr "アクティブなソース" msgid "Adblock" msgstr "Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "アドブロックアクション" @@ -51,43 +46,54 @@ msgstr "この(サブ)ドメインをローカルのブラックリストに追 msgid "Add this (sub-)domain to your local whitelist." msgstr "この(サブ)ドメインをローカルのホワイトリストに追加します。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "追加のJailブロックリスト" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "追加設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Adblock の処理が開始されるまでの、追加の遅延時間(秒)です。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "DNS の詳細設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Eメールの詳細設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "リポートの詳細設定" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "回答" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "バックアップ先 ディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "ベースとなるテンポラリディレクトリ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -107,19 +113,27 @@ msgstr "" msgid "Blacklist..." msgstr "ブラックリスト..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "ブロックされたDNSリクエスト" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "ブロックされたドメイン" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "ブロックされたドメイン" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "ブロックリストのバックアップ" @@ -131,11 +145,11 @@ msgstr "ブロックリストのクエリ" msgid "Blocklist Query..." msgstr "ブロックリストのクエリ..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "ブロックリスト提供元" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -149,12 +163,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "キャンセル" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -162,7 +176,11 @@ msgstr "" msgid "Client" msgstr "クライアント" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/ko/adblock.po b/applications/luci-app-adblock/po/ko/adblock.po index 94a92e5903..a0acbbb59c 100644 --- a/applications/luci-app-adblock/po/ko/adblock.po +++ b/applications/luci-app-adblock/po/ko/adblock.po @@ -10,16 +10,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- 명시되지 않음 -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "액션" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "활성화된 소스" @@ -28,7 +23,7 @@ msgstr "활성화된 소스" msgid "Adblock" msgstr "Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Adblock 액션" @@ -48,45 +43,56 @@ msgstr "이 (서브)도메인을 로컬 블랙리스트에 추가." msgid "Add this (sub-)domain to your local whitelist." msgstr "이 (서브)도메인을 로컬 화이트리스트에 추가." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "추가적인 Jail 블록리스트" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "추가 설정" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "고급 DNS 설정" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "고급 이메일 설정" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "고급 리포트 설정" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 #, fuzzy msgid "Answer" msgstr "답변" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #, fuzzy msgid "Backup Directory" msgstr "백업 경로" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -105,19 +111,27 @@ msgstr "" msgid "Blacklist..." msgstr "블랙리스트..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "차단된 DNS 요청" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "차단된 도메인" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "차단된 도메인들" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "차단목록 백업" @@ -129,11 +143,11 @@ msgstr "블록리스트 쿼리" msgid "Blocklist Query..." msgstr "블록리스트 등록..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -144,12 +158,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "취소" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -157,7 +171,11 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information
1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -28,7 +23,7 @@ msgstr "" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -48,43 +43,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -101,19 +107,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -125,11 +139,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -140,12 +154,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -153,7 +167,11 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information =20) ? 1 : 2;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- nieokreślony -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akcja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Aktywne źródła" @@ -29,7 +24,7 @@ msgstr "Aktywne źródła" msgid "Adblock" msgstr "Blokowanie reklam" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Akcje Adblock" @@ -49,45 +44,56 @@ msgstr "Dodaj tę (sub-)domenę do Twojej lokalnej czarnej listy." msgid "Add this (sub-)domain to your local whitelist." msgstr "Dodaj tę (pod-)domenę do Twojej lokalnej białej listy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Dodatkowa lista blokująca" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Dodatkowe ustawienia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatkowe opóźnienie wyzwalacza w sekundach przed rozpoczęciem przetwarzania " "adblocka." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Ustawienia DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Zaawansowane ustawienia e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Ustawienia raportowania" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpowiedź" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Katalog kopii zapasowej" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Podstawowy katalog tymczasowy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -108,19 +114,27 @@ msgstr "" msgid "Blacklist..." msgstr "Czarna lista..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Zablokowane żądania DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Zablokowana domena" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Zablokowane domeny" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Kopia zapasowa list blokujących" @@ -132,11 +146,11 @@ msgstr "Zapytanie do list blokujących" msgid "Blocklist Query..." msgstr "Zapytanie..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Źródła list" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -151,12 +165,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Anuluj" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "Kategorie" @@ -164,7 +178,11 @@ msgstr "Kategorie" msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/pt/adblock.po b/applications/luci-app-adblock/po/pt/adblock.po index 4c9397bbc6..2cdbdd9134 100644 --- a/applications/luci-app-adblock/po/pt/adblock.po +++ b/applications/luci-app-adblock/po/pt/adblock.po @@ -10,16 +10,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- não especificado -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Ação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Fontes Ativas" @@ -28,7 +23,7 @@ msgstr "Fontes Ativas" msgid "Adblock" msgstr "Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Ação do adblock" @@ -48,45 +43,56 @@ msgstr "Adicione este (sub)domínio na sua lista negra local." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adicione este (sub)domínio na sua lista branca local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Lista de Bloqueio Priosional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Configurações adicionais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Atraso adicional do gatilho em segundos antes do processamento do adblock " "começar." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Configurações Avançadas do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Configurações avançadas de E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Configurações Avançadas do Relatório" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Resposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Diretório do Backup" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Diretório Base Temporário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -108,19 +114,27 @@ msgstr "" msgid "Blacklist..." msgstr "Lista negra..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Solicitações de DNS bloqueadas" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Domínio Bloqueado" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Domínios Bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Cópia de Segurança da Lista de Bloqueio" @@ -132,11 +146,11 @@ msgstr "Consulta na Lista de Bloqueio" msgid "Blocklist Query..." msgstr "Pesquisando a Lista de Bloqueio..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Origem da Blocklist" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -151,12 +165,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "Categorias" @@ -164,7 +178,11 @@ msgstr "Categorias" msgid "Client" msgstr "Cliente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/pt_BR/adblock.po b/applications/luci-app-adblock/po/pt_BR/adblock.po index 9b9072e3a0..71e9d6194b 100644 --- a/applications/luci-app-adblock/po/pt_BR/adblock.po +++ b/applications/luci-app-adblock/po/pt_BR/adblock.po @@ -13,16 +13,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- não especificado -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Ação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Fontes Ativas" @@ -31,7 +26,7 @@ msgstr "Fontes Ativas" msgid "Adblock" msgstr "Bloqueio de anúncios" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Ação do adblock" @@ -51,45 +46,56 @@ msgstr "Adicione este (sub)domínio na sua lista negra local." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adicione este (sub)domínio na sua lista branca local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Lista de Bloqueio Adicional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Configurações Adicionais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Atraso de gatilho adicional em segundos antes do processamento do adblock " "começar." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Configurações Avançadas do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Configurações Avançadas do E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Configurações Avançadas do Relatório" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Resposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Diretório da cópia de segurança" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Diretório Base Temporário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -111,19 +117,27 @@ msgstr "" msgid "Blacklist..." msgstr "Lista negra..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Requisições bloqueadas do DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Domínios Bloqueados" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Domínios Bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Cópia de Segurança da Lista de Bloqueio" @@ -135,11 +149,11 @@ msgstr "Consulta na Lista de Bloqueio" msgid "Blocklist Query..." msgstr "Pesquisando a Lista de Bloqueio..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Fontes das listas de bloqueio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -154,12 +168,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "Categorias" @@ -167,7 +181,11 @@ msgstr "Categorias" msgid "Client" msgstr "Cliente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/ro/adblock.po b/applications/luci-app-adblock/po/ro/adblock.po index bea6120550..70ae7f8fc2 100644 --- a/applications/luci-app-adblock/po/ro/adblock.po +++ b/applications/luci-app-adblock/po/ro/adblock.po @@ -11,16 +11,11 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Actiune" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Surse Active" @@ -29,7 +24,7 @@ msgstr "Surse Active" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Acțiune Adblock" @@ -49,45 +44,56 @@ msgstr "Adăugați acest (sub) domeniu în lista locală de interzise." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adăugați acest (sub) domeniu la lista locală de admise." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Setări Suplimentare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Întârziere adițională înainte ca procesarea adblock-ului să înceapă (în " "secunde)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Setări Avansate DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Setări Avansate E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Setări Avansate Raport" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Răspuns" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Director copie de siguranţă" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Director Temporar de Bază" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -108,19 +114,27 @@ msgstr "" msgid "Blacklist..." msgstr "Lista de Interzise..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Domeniu blocat" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Domenii Blocate" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Copie de Rezervă Pentru Lista de Blocate" @@ -132,11 +146,11 @@ msgstr "Interogare Lista de Blocare" msgid "Blocklist Query..." msgstr "Interogare Lista de Blocare..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Surse de blocare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -151,12 +165,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Renunțare" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -164,7 +178,11 @@ msgstr "" msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information
To avoid OOM errors, please " diff --git a/applications/luci-app-adblock/po/ru/adblock.po b/applications/luci-app-adblock/po/ru/adblock.po index c61a28d8d8..a383534e48 100644 --- a/applications/luci-app-adblock/po/ru/adblock.po +++ b/applications/luci-app-adblock/po/ru/adblock.po @@ -16,16 +16,11 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- не указано -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Действие" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Активные источники" @@ -34,7 +29,7 @@ msgstr "Активные источники" msgid "Adblock" msgstr "Блокировщик рекламы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Действие Adblock" @@ -54,43 +49,54 @@ msgstr "Добавить этот (под-)домен в локальный чё msgid "Add this (sub-)domain to your local whitelist." msgstr "Добавить этот (под-)домен в локальный белый список." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Дополнительный «тюремный» список блокировок" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Дополнительные настройки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Дополнительная задержка в секундах до начала работы Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Расширенные настройки DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Расширенные настройки электронной почты" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Расширенные настройки отчётов" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Ответ" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Папка для резервных копий" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Расположение временных файлов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -111,19 +117,27 @@ msgstr "" msgid "Blacklist..." msgstr "Чёрный список..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Заблокированные DNS-запросы" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Блокируемый домен" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Блокируемые домены" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Резервная копия чёрного списка" @@ -135,11 +149,11 @@ msgstr "Поиск по «чёрному списку»" msgid "Blocklist Query..." msgstr "Поиск по чёрному списку..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Источники черного списка" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -154,12 +168,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Отмена" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "Категории" @@ -167,7 +181,11 @@ msgstr "Категории" msgid "Client" msgstr "Клиент" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information Обратите внимание: для работы этой функции необходим пакет 'tcpdump-mini' " "и полная перезагрузка службы Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "General Settings" msgstr "Общие настройки" @@ -391,15 +411,15 @@ msgstr "Общие настройки" msgid "Grant access to LuCI app adblock" msgstr "Предоставить доступ к приложению Adblock для LuCI" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:223 msgid "Information" msgstr "Информация" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Jail Directory" msgstr "Папка для «тюрьмы»" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Last Run" msgstr "Последний запуск" @@ -407,25 +427,25 @@ msgstr "Последний запуск" msgid "Latest DNS Requests" msgstr "Последние DNS-запросы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Limit SafeSearch" msgstr "Ограничить Безопасный поиск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Limit SafeSearch to certain providers." msgstr "" "Ограничить использование Безопасного поиска определёнными поисковыми " "службами." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:65 msgid "Line number to remove" msgstr "Номер строки для удаления" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:483 msgid "List of available network devices used by tcpdump." msgstr "Список доступных сетевых устройств, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -433,7 +453,7 @@ msgstr "" "Список сетевых интерфейсов для запуска Adblock в случае их доступности. " "Выберите «не определено» для стандартного запуска по тайм-ауту." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -441,7 +461,7 @@ msgstr "" "Список поддерживаемых служб DNS с их каталогом по умолчанию. Чтобы " "перезаписать путь по умолчанию, используйте опцию «Каталог DNS»." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Список поддерживаемых предварительно настроенных утилит для загрузки списков." @@ -451,14 +471,10 @@ msgstr "" msgid "Log View" msgstr "Просмотр журнала" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "Low Priority Service" msgstr "Низкий приоритет службы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -msgid "Name / IP Address" -msgstr "Имя / IP-адрес" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Нет результатов запроса!" @@ -472,7 +488,7 @@ msgstr "Ещё нет журналов, связанных с Adblock!" msgid "Overview" msgstr "Обзор" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:517 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Профиль, используемый 'msmtp' для отправки почтовых уведомлений." @@ -485,7 +501,7 @@ msgid "Query active blocklists and backups for a specific domain." msgstr "" "Поиск определенного домена в активных списках блокировок и резервных копиях." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:521 #, fuzzy msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " @@ -494,11 +510,11 @@ msgstr "" "Увеличение количества уведомлений для отправки письма в случае, если " "количество блокировок не превышает указанного числа." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:363 msgid "Receiver address for adblock notification e-mails." msgstr "Адрес получателя для уведомлений по электронной почте." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:318 msgid "" "Redirect all DNS queries from specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -506,7 +522,7 @@ msgstr "" "Перенаправление всех DNS-запросов из указанных зон к локальной службе DNS " "Lookup. Применяется к протоколам TCP и UDP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -528,7 +544,7 @@ msgstr "Обновить отчёт DNS" msgid "Refresh Timer" msgstr "Обновить таймер" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 msgid "Refresh Timer..." msgstr "Обновить таймер..." @@ -536,47 +552,47 @@ msgstr "Обновить таймер..." msgid "Refresh..." msgstr "Обновить..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "Relax SafeSearch" msgstr "Ослабить Безопасный поиск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:281 msgid "Reload" msgstr "Перезапустить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 msgid "Remove an existing job" msgstr "Удалить существующее задание" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:492 msgid "Report Chunk Count" msgstr "Количество фрагментов отчёта" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Report Chunk Size" msgstr "Размер фрагментов отчёта" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:488 msgid "Report Directory" msgstr "Папка для отчётов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:483 msgid "Report Interface" msgstr "Интерфейсы в отчёте" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:502 msgid "Report Ports" msgstr "Порты в отчёте" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:492 msgid "Report chunk count used by tcpdump." msgstr "Количество фрагментов отчёта, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Report chunk size used by tcpdump in MByte." msgstr "Размер фрагментов отчёта, используемых tcpdump, в мегабайтах." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:288 msgid "Restart" msgstr "Перезапустить" @@ -584,30 +600,30 @@ msgstr "Перезапустить" msgid "Result" msgstr "Результат" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Directories" msgstr "Рабочие папки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 #, fuzzy msgid "Run Flags" msgstr "Рабочие флаги" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Interfaces" msgstr "Рабочие интерфейсы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Utils" msgstr "Рабочие утилиты" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:106 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." @@ -615,7 +631,7 @@ msgstr "" "Отправлять на e-mail уведомления, касающиеся Adblock.
Обратите " "внимание: требуется установка дополнительного пакета \"msmtp\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:509 msgid "Sender address for adblock notification E-Mails." msgstr "E-Mail адрес отправителя уведомлений Adblock." @@ -623,11 +639,11 @@ msgstr "E-Mail адрес отправителя уведомлений Adblock. msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Settings" msgstr "Настройки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." @@ -635,16 +651,16 @@ msgstr "" "Размер очереди загрузки для параллельной обработки (сортировки, объединения " "и т.п.)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:543 #, fuzzy msgid "Sources (Size, Focus)" msgstr "Источники (Размер, Фокусировка)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:502 msgid "Space separated list of ports used by tcpdump." msgstr "Разделенный пробелами список портов, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:415 msgid "Special config options for the selected download utility." msgstr "Специальные опции конфигурации для выбранной утилиты загрузки." @@ -652,53 +668,53 @@ msgstr "Специальные опции конфигурации для выб msgid "Start Timestamp" msgstr "Время начала" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 msgid "Startup Trigger Interface" msgstr "Интерфейс для запуска" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Status / Version" msgstr "Статус / Версия" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:274 msgid "Suspend" msgstr "Приостановить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:488 msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Папка для созданного списка блокировки 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "Папка для «тюремного» списка блокировки 'adb_list.jail'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:86 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:95 msgid "The Refresh Timer could not been updated." msgstr "Не удалось обновить таймер обновления." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:88 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:97 msgid "The Refresh Timer has been updated." msgstr "Таймер обновления обновлён." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:56 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" msgstr "День недели (необязательно, значения: 1–7, запятые или дефисы)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:46 msgid "The hours portition (req., range: 0-23)" msgstr "Распределение часов (обязательно, значения: 0–23)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:51 msgid "The minutes portion (opt., range: 0-59)" msgstr "Распределение минут (обязательно, значения: 0–59)" @@ -740,7 +756,7 @@ msgstr "" msgid "Time" msgstr "Время" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Тайм-аут ожидания успешного перезапуска службы DNS." @@ -754,7 +770,7 @@ msgstr "Чтобы списки были актуальны, настройте msgid "Top 10 Statistics" msgstr "Топ-10 статистики" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:513 msgid "Topic for adblock notification E-Mails." msgstr "Тема, используемая для отправки электронных писем." @@ -762,7 +778,7 @@ msgstr "Тема, используемая для отправки электр msgid "Total DNS Requests" msgstr "Всего DNS-запросов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Trigger Delay" msgstr "Задержка запуска" @@ -771,12 +787,12 @@ msgstr "Задержка запуска" msgid "Unable to save changes: %s" msgstr "Невозможно сохранить изменения: %s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:613 msgid "Variants" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:371 msgid "Verbose Debug Logging" msgstr "Подробный журнал отладки" @@ -793,11 +809,15 @@ msgstr "" msgid "Whitelist..." msgstr "Белый список..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425 +msgid "bind (/var/lib/bind)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -805,18 +825,31 @@ msgstr "kresd (/etc/kresd)" msgid "max. result set size" msgstr "макс. размер списка результатов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 -msgid "named (/var/lib/bind)" -msgstr "named (/var/lib/bind)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" +#~ msgid "- unspecified -" +#~ msgstr "- не указано -" + +#~ msgid "Blocked Domain" +#~ msgstr "Блокируемый домен" + +#, fuzzy +#~ msgid "Disable selective DNS whitelisting (RPZ pass through)." +#~ msgstr "" +#~ "Запретить избирательное применение белого списка DNS (сквозное RPZ)." + +#~ msgid "Name / IP Address" +#~ msgstr "Имя / IP-адрес" + +#~ msgid "named (/var/lib/bind)" +#~ msgstr "named (/var/lib/bind)" + #~ msgid "" #~ "Changes on this tab needs a full adblock service restart to take effect." #~ "

 

" diff --git a/applications/luci-app-adblock/po/si/adblock.po b/applications/luci-app-adblock/po/si/adblock.po index 338dabd4c6..531ef56b61 100644 --- a/applications/luci-app-adblock/po/si/adblock.po +++ b/applications/luci-app-adblock/po/si/adblock.po @@ -10,16 +10,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.5\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- නිශ්චිතව දක්වා නැත -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -28,7 +23,7 @@ msgstr "" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -48,43 +43,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "පිළිතුර" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -101,19 +107,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -125,11 +139,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -140,12 +154,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -153,7 +167,11 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information
=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akcia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -28,7 +23,7 @@ msgstr "" msgid "Adblock" msgstr "Blokovanie reklamy Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Akcia" @@ -48,46 +43,57 @@ msgstr "Pridať túto (sub-) doménu medzi lokálne zakázané domény." msgid "Add this (sub-)domain to your local whitelist." msgstr "Pridať túto (sub-) doménu medzi lokálne povolené domény." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Ďalšie nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatočné oneskorenie v sekundách pred začiatkom spracovania blokovania " "reklamy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Pokročilé DNS nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Pokročilé nastavenia e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 #, fuzzy msgid "Advanced Report Settings" msgstr "Pokročilé nastavenia" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpoveď" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Záložný priečinok" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Základný Temp priečinok" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,19 +112,27 @@ msgstr "" msgid "Blacklist..." msgstr "Zoznam zakázaných domén..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Blokovaná doména" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Záloha zoznamu blokovaných domén" @@ -130,11 +144,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Zdroje zoznamov blokovaní" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -145,12 +159,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Zrušiť" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -158,7 +172,11 @@ msgstr "" msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index 97207592ed..15e92be132 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -1,16 +1,11 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -19,7 +14,7 @@ msgstr "" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -39,43 +34,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -92,19 +98,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -116,11 +130,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -131,12 +145,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -144,7 +158,11 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/po/uk/adblock.po b/applications/luci-app-adblock/po/uk/adblock.po index 29bee6065a..d1411ad58d 100644 --- a/applications/luci-app-adblock/po/uk/adblock.po +++ b/applications/luci-app-adblock/po/uk/adblock.po @@ -11,16 +11,11 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Дія" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Активні джерела" @@ -29,7 +24,7 @@ msgstr "Активні джерела" msgid "Adblock" msgstr "Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -49,43 +44,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -102,19 +108,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -126,11 +140,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -141,12 +155,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Скасувати" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -154,7 +168,11 @@ msgstr "" msgid "Client" msgstr "Клієнт" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information
check the online documentation" msgstr "" -"配置广告拦截软件包,以通过 DNS 屏蔽广告/滥用域名。更多有关信息,请查看在线文档" +"配置广告拦截软件包,以通过 DNS 屏蔽广告/滥用域名。更多有关信息,请查看在线文档" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208 @@ -179,28 +197,28 @@ msgstr "" msgid "Count" msgstr "计数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup." msgstr "创建压缩的阻止列表备份,将在下载错误或启动期间使用它们。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "DNS Backend" msgstr "DNS后端" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "DNS Directory" msgstr "DNS 目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 msgid "DNS Report" msgstr "DNS报告" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 msgid "DNS Restart Timeout" msgstr "DNS重新启动超时" @@ -208,62 +226,65 @@ msgstr "DNS重新启动超时" msgid "Date" msgstr "日期" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 msgid "Disable DNS Allow" msgstr "禁用DNS允许" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "Disable DNS Restarts" msgstr "禁用DNS重新启动" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 msgid "" "Disable adblock triggered restarts for dns backends with autoload/inotify " "functions." msgstr "禁止广告拦截触发具有 自动加载/inotify 功能的 DNS 后端的重新启动。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444 -msgid "Disable selective DNS whitelisting (RPZ pass through)." -msgstr "禁止选择性DNS白名单(RPZ通过)." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 +msgid "Disable selective DNS whitelisting (RPZ-PASSTHRU)." +msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256 msgid "Domain" msgstr "域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209 +msgid "Domains" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:415 msgid "Download Parameters" msgstr "下载参数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 msgid "Download Queue" msgstr "下载队列" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "Download Utility" msgstr "下载工具" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "E-Mail Notification" msgstr "电子邮件通知" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:521 msgid "E-Mail Notification Count" msgstr "电子邮件通知计数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:517 msgid "E-Mail Profile" msgstr "电子邮件概要" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:363 msgid "E-Mail Receiver Address" msgstr "电子邮件收件人地址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:509 msgid "E-Mail Sender Address" msgstr "电子邮件发件人地址" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:513 msgid "E-Mail Topic" msgstr "电子邮件主题" @@ -277,23 +298,23 @@ msgstr "编辑黑名单" msgid "Edit Whitelist" msgstr "编辑白名单" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:339 msgid "Enable SafeSearch" msgstr "启用安全搜索" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "Enable moderate SafeSearch filters for youtube." msgstr "为YouTube启用适度的安全搜索过滤器." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:309 msgid "Enable the adblock service." msgstr "启用广告拦截服务。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:371 msgid "Enable verbose debug logging in case of any processing errors." msgstr "在出现任何处理错误时启用详细的调试日志。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:305 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:309 msgid "Enabled" msgstr "已启用" @@ -301,7 +322,7 @@ msgstr "已启用" msgid "End Timestamp" msgstr "结束时间戳" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:339 msgid "" "Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and " "pixabay." @@ -311,11 +332,11 @@ msgstr "强制执行Google,Bing,Duckduckgo,Yandex,youtube和Google的Saf msgid "Existing job(s)" msgstr "现有任务" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 msgid "External DNS Lookup Domain" msgstr "外部DNS查找域" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440 msgid "" "External domain to check for a successful DNS backend restart. Please note: " "To disable this check set this option to 'false'." @@ -327,44 +348,44 @@ msgstr "" msgid "Filter criteria like date, domain or client (optional)" msgstr "过滤条件,例如日期,域或客户(可选)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:328 msgid "Firewall ports that should be forced locally." msgstr "本地应强制使用的防火墙端口。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 msgid "Firewall source zones that should be forced locally." msgstr "本地应强制使用的防火墙源域。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 msgid "Flush DNS Cache" msgstr "清空 DNS 缓存" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445 msgid "Flush the DNS Cache before adblock processing as well." msgstr "在处理广告过滤之前刷新 DNS 缓存。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:318 msgid "Force Local DNS" msgstr "强制本地 DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:328 msgid "Forced Ports" msgstr "强制端口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321 msgid "Forced Zones" msgstr "强制域" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 msgid "" "Gather DNS related network traffic via tcpdump and provide a DNS Report on " "demand. Please note: this needs additional 'tcpdump-mini' package " "installation and a full adblock service restart to take effect." msgstr "" -"通过 tcpdump 收集与 DNS 相关的网络流量,并按需提供 DNS 报告。请注意:这需要额外的“tcpdump-" -"mini”软件包,并重新启动完整的广告拦截服务才能生效。" +"通过 tcpdump 收集与 DNS 相关的网络流量,并按需提供 DNS 报告。请注意:这需要额" +"外的“tcpdump-mini”软件包,并重新启动完整的广告拦截服务才能生效。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "General Settings" msgstr "常规设置" @@ -372,15 +393,15 @@ msgstr "常规设置" msgid "Grant access to LuCI app adblock" msgstr "授予访问 LuCI 应用 adblock 的权限" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:223 msgid "Information" msgstr "信息" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Jail Directory" msgstr "黑名单目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Last Run" msgstr "最后运行" @@ -388,23 +409,23 @@ msgstr "最后运行" msgid "Latest DNS Requests" msgstr "最新的DNS请求" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Limit SafeSearch" msgstr "限定安全搜索" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Limit SafeSearch to certain providers." msgstr "限定特定搜索引擎使用安全搜索。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:65 msgid "Line number to remove" msgstr "要移除的行号" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:483 msgid "List of available network devices used by tcpdump." msgstr "tcpdump使用的可用网络设备列表." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -412,14 +433,14 @@ msgstr "" "触发adblock启动的可用网络接口列表.选择“未指定”以使用传统的启动超时而不是网络" "触发器." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." msgstr "" "支持的DNS后端列表及其默认列表目录.要覆盖默认路径,请使用“ DNS目录”选项." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "List of supported and fully pre-configured download utilities." msgstr "支持和完全预配置的下载实用程序列表。" @@ -428,14 +449,10 @@ msgstr "支持和完全预配置的下载实用程序列表。" msgid "Log View" msgstr "日志视图" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "Low Priority Service" msgstr "低优先级服务" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -msgid "Name / IP Address" -msgstr "名称 / IP 地址" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "无查询结果!" @@ -449,7 +466,7 @@ msgstr "尚无与广告拦截相关的日志!" msgid "Overview" msgstr "概览" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:517 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "'msmtp' 用于adblock通知电子邮件的配置文件。" @@ -461,24 +478,24 @@ msgstr "查询" msgid "Query active blocklists and backups for a specific domain." msgstr "查询特定域的活动阻止列表和备份." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:521 msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " "is less or equal to the given limit." msgstr "" "如果总体阻止列表总数小于或等于给定的限制,请提高通知数量,以获取电子邮件." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:363 msgid "Receiver address for adblock notification e-mails." msgstr "adblock 通知 E-Mail 的收件人地址。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:318 msgid "" "Redirect all DNS queries from specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." msgstr "将所有DNS查询从指定区域重定向到本地DNS解析器,适用于UDP和TCP协议。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -499,7 +516,7 @@ msgstr "刷新DNS报告" msgid "Refresh Timer" msgstr "定时恢复" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 msgid "Refresh Timer..." msgstr "定时恢复中..." @@ -507,47 +524,47 @@ msgstr "定时恢复中..." msgid "Refresh..." msgstr "刷新..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "Relax SafeSearch" msgstr "放宽安全搜寻" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:281 msgid "Reload" msgstr "重新加载" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 msgid "Remove an existing job" msgstr "移除一个现有任务" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:492 msgid "Report Chunk Count" msgstr "报告区块计数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Report Chunk Size" msgstr "报告区块大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:488 msgid "Report Directory" msgstr "报告目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:483 msgid "Report Interface" msgstr "报告接口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:502 msgid "Report Ports" msgstr "报告端口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:492 msgid "Report chunk count used by tcpdump." msgstr "报告 tcpdump 所使用的区块数量。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Report chunk size used by tcpdump in MByte." msgstr "报告 tcpdump 所使用的区块大小 (以 MByte 显示)。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:288 msgid "Restart" msgstr "重启" @@ -555,35 +572,35 @@ msgstr "重启" msgid "Result" msgstr "结果" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Directories" msgstr "运行目录" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 msgid "Run Flags" msgstr "运行标记" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Interfaces" msgstr "运行接口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Utils" msgstr "运行工具" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:106 msgid "Save" msgstr "保存" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." msgstr "发送 AdBlock 相关的通知邮件。请留意:此功能需要安装 \"msmtp\"。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:509 msgid "Sender address for adblock notification E-Mails." msgstr "AdBlock 通知邮件的发送地址。" @@ -591,25 +608,25 @@ msgstr "AdBlock 通知邮件的发送地址。" msgid "Set a new adblock job" msgstr "设置一个新的广告拦截作业" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Settings" msgstr "设置" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." msgstr "并行下载处理 (分类、合并等) 的下载队列大小。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:543 msgid "Sources (Size, Focus)" msgstr "来源(大小,焦点)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:502 msgid "Space separated list of ports used by tcpdump." msgstr "tcpdump使用的端口列表,用空格分隔端口。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:415 msgid "Special config options for the selected download utility." msgstr "所选下载工具的特殊配置选项。" @@ -617,53 +634,53 @@ msgstr "所选下载工具的特殊配置选项。" msgid "Start Timestamp" msgstr "开始时间戳" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 msgid "Startup Trigger Interface" msgstr "启动触发接口" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Status / Version" msgstr "状态 / 版本" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:274 msgid "Suspend" msgstr "暂停" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:488 msgid "Target directory for DNS related report files." msgstr "DNS 相关报告文件的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Target directory for blocklist backups." msgstr "拦截列表备份的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "生成拦截列表“adb_list.overall”的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "生成拦截列表“adb_list.overall”的目标目录。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:86 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:95 msgid "The Refresh Timer could not been updated." msgstr "无法更新刷新计时器。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:88 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:97 msgid "The Refresh Timer has been updated." msgstr "刷新计时器已更新。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:56 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" msgstr "星期几(可选。取值范围:1-7,可用 , 或 - 分隔)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:46 msgid "The hours portition (req., range: 0-23)" msgstr "小时(必须。取值范围:0-23)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:51 msgid "The minutes portion (opt., range: 0-59)" msgstr "分钟(可选。取值范围:0-59)" @@ -699,7 +716,7 @@ msgstr "此选项卡显示上次生成的 DNS 报告,按“刷新”按钮获 msgid "Time" msgstr "时间" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 msgid "Timeout to wait for a successful DNS backend restart." msgstr "等待成功的DNS后端重新启动的超时。" @@ -713,7 +730,7 @@ msgstr "为了使您的广告过滤列表保持最新,您应该为这些列表 msgid "Top 10 Statistics" msgstr "前 10 统计数据" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:513 msgid "Topic for adblock notification E-Mails." msgstr "广告拦截通知邮件的主题。" @@ -721,7 +738,7 @@ msgstr "广告拦截通知邮件的主题。" msgid "Total DNS Requests" msgstr "DNS 请求总数" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Trigger Delay" msgstr "触发延时" @@ -730,12 +747,12 @@ msgstr "触发延时" msgid "Unable to save changes: %s" msgstr "无法保存更改:%s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:613 msgid "Variants" msgstr "变种" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:371 msgid "Verbose Debug Logging" msgstr "详细的调试记录" @@ -750,11 +767,15 @@ msgstr "白名单更改已保存。刷新您的广告拦截列表以使更改生 msgid "Whitelist..." msgstr "白名单..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425 +msgid "bind (/var/lib/bind)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 msgid "kresd (/etc/kresd)" msgstr "抑制 (/etc/kresd)" @@ -762,18 +783,29 @@ msgstr "抑制 (/etc/kresd)" msgid "max. result set size" msgstr "最大结果集大小" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 -msgid "named (/var/lib/bind)" -msgstr "BIND(/var/lib/bind)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "raw (/tmp)" msgstr "原始(/ tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "unbound (/var/lib/unbound)" msgstr "未绑定 (/var/lib/unbound)" +#~ msgid "- unspecified -" +#~ msgstr "- 未指定 -" + +#~ msgid "Blocked Domain" +#~ msgstr "已拦截的域名" + +#~ msgid "Disable selective DNS whitelisting (RPZ pass through)." +#~ msgstr "禁止选择性DNS白名单(RPZ通过)." + +#~ msgid "Name / IP Address" +#~ msgstr "名称 / IP 地址" + +#~ msgid "named (/var/lib/bind)" +#~ msgstr "BIND(/var/lib/bind)" + #~ msgid "" #~ "Changes on this tab needs a full adblock service restart to take effect." #~ "

 

" diff --git a/applications/luci-app-adblock/po/zh_Hant/adblock.po b/applications/luci-app-adblock/po/zh_Hant/adblock.po index 7bf10e2ba6..71dd7de4a5 100644 --- a/applications/luci-app-adblock/po/zh_Hant/adblock.po +++ b/applications/luci-app-adblock/po/zh_Hant/adblock.po @@ -16,16 +16,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "未指定" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "動作" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "活躍的來源" @@ -34,7 +29,7 @@ msgstr "活躍的來源" msgid "Adblock" msgstr "Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Adblock 動作" @@ -54,43 +49,54 @@ msgstr "加入該(子)域名到您的本地黑名單。" msgid "Add this (sub-)domain to your local whitelist." msgstr "加入該(子)域名到您的本地白名單。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "附加 Jail 封鎖清單" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "附加設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "附加觸發 Adblock 行程延遲開始的秒數。" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "進階 DNS 設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "進階電郵設定" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "進階報告設定" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "回答" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "備份目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "基本臨時目錄" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -108,19 +114,27 @@ msgstr "黑名單變更已儲存;請重新整理您的 Adblock 清單來使變 msgid "Blacklist..." msgstr "黑名單…" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "封鎖的 DNS 請求" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "封鎖的域名" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "封鎖的域名" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "黑名單備份" @@ -132,11 +146,11 @@ msgstr "封鎖清單查詢" msgid "Blocklist Query..." msgstr "黑名單查詢…" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "封鎖清單來源" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -149,12 +163,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "取消" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "類別" @@ -162,7 +176,11 @@ msgstr "類別" msgid "Client" msgstr "客户端" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information

 

" diff --git a/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json b/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json index a2fd0556cf..b7e7dd5a8c 100644 --- a/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json +++ b/applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json @@ -22,7 +22,7 @@ "/etc/init.d/adblock restart" : [ "exec" ], "/etc/init.d/adblock suspend" : [ "exec" ], "/etc/init.d/adblock resume" : [ "exec" ], - "/etc/init.d/adblock report * [0-9]* [a-z]* json" : [ "exec" ], + "/etc/init.d/adblock report [a-z]* [0-9]* *" : [ "exec" ], "/etc/init.d/adblock timer list" : [ "exec" ], "/etc/init.d/adblock timer remove [0-9]*" : [ "exec" ], "/etc/init.d/adblock timer add * [0-9]* [0-9*]* [1-7,-*]*" : [ "exec" ], -- 2.30.2