luci-app-adblock: sync with adblock 4.0.6

* made SafeSearch provider configurable, you can limit
  SafeSearch to certain providers
* add an explanation paragraph to report settings
  tab (regarding restart requirement)
* sync translations

Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
Dirk Brenken 2020-06-12 22:51:06 +02:00
parent ea5e6e17a2
commit 8a85592a04
No known key found for this signature in database
GPG key ID: 9D71CD547BFAE684
34 changed files with 2926 additions and 2429 deletions

View file

@ -268,7 +268,7 @@ return view.extend({
s.tab('general', _('General Settings')); s.tab('general', _('General Settings'));
s.tab('additional', _('Additional Settings')); s.tab('additional', _('Additional Settings'));
s.tab('adv_dns', _('Advanced DNS Settings')); s.tab('adv_dns', _('Advanced DNS Settings'));
s.tab('adv_report', _('Advanced Report Settings')); s.tab('adv_report', _('Advanced Report Settings'), _('Changes on this tab needs a full adblock service restart to take effect.<br /><p>&#xa0;</p>'));
s.tab('adv_email', _('Advanced E-Mail Settings')); s.tab('adv_email', _('Advanced E-Mail Settings'));
s.tab('sources', _('Blocklist Sources'), _('List of supported and fully pre-configured adblock sources, already active sources are pre-selected.<br /> \ s.tab('sources', _('Blocklist Sources'), _('List of supported and fully pre-configured adblock sources, already active sources are pre-selected.<br /> \
<b><em>To avoid OOM errors, please do not select too many lists!</em></b><br /> \ <b><em>To avoid OOM errors, please do not select too many lists!</em></b><br /> \
@ -301,7 +301,16 @@ return view.extend({
o = s.taboption('general', form.Flag, 'adb_safesearch', _('Enable SafeSearch'), _('Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and pixabay.')); o = s.taboption('general', form.Flag, 'adb_safesearch', _('Enable SafeSearch'), _('Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and pixabay.'));
o.rmempty = false; o.rmempty = false;
o = s.taboption('general', form.Flag, 'adb_safesearchmod', _('SafeSearch Moderate'), _('Enable moderate SafeSearch filters for youtube.')); o = s.taboption('general', form.MultiValue, 'adb_safesearchlist', _('Limit SafeSearch'), _('Limit SafeSearch to certain providers.'));
o.depends('adb_safesearch', '1');
o.value('google');
o.value('bing');
o.value('yandex');
o.value('youtube');
o.value('pixabay');
o.rmempty = true;
o = s.taboption('general', form.Flag, 'adb_safesearchmod', _('Relax SafeSearch'), _('Enable moderate SafeSearch filters for youtube.'));
o.depends('adb_safesearch', '1'); o.depends('adb_safesearch', '1');
o.rmempty = true; o.rmempty = true;

View file

@ -44,7 +44,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -52,7 +52,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -72,15 +72,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -105,7 +105,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -121,7 +121,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -136,6 +136,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -154,26 +160,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -187,7 +193,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -195,21 +201,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -218,39 +224,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -268,7 +274,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -276,7 +282,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -298,11 +304,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -312,11 +318,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -324,7 +330,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -343,7 +349,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -355,7 +361,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -365,7 +379,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -383,7 +397,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -396,7 +410,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -417,7 +431,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -429,13 +443,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -445,7 +459,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -473,35 +487,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -528,23 +546,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -556,13 +570,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -572,11 +586,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -596,23 +610,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -664,7 +678,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -678,11 +692,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -691,7 +705,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -706,11 +720,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -718,14 +732,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -37,7 +37,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -45,7 +45,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -65,15 +65,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -98,7 +98,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -129,6 +129,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -147,26 +153,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -180,7 +186,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -188,21 +194,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -211,39 +217,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -261,7 +267,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -291,11 +297,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -305,11 +311,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -317,7 +323,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -336,7 +342,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -348,7 +354,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -358,7 +372,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -376,7 +390,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -389,7 +403,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -410,7 +424,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -422,13 +436,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -438,7 +452,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -466,35 +480,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -521,23 +539,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -549,13 +563,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -565,11 +579,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -589,23 +603,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -657,7 +671,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -671,11 +685,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -684,7 +698,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -699,11 +713,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -711,14 +725,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -71,15 +71,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -104,7 +104,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -120,7 +120,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -135,6 +135,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -153,26 +159,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -186,7 +192,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -194,21 +200,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -217,39 +223,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -267,7 +273,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -275,7 +281,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -297,11 +303,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -311,11 +317,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -323,7 +329,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -342,7 +348,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -354,7 +360,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -364,7 +378,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -382,7 +396,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -395,7 +409,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -416,7 +430,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -428,13 +442,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -444,7 +458,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -472,35 +486,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -527,23 +545,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -555,13 +569,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -571,11 +585,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -595,23 +609,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -663,7 +677,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -677,11 +691,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -690,7 +704,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -705,11 +719,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -717,14 +731,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Retard addicional en segons de lactivador abans que comenci el processament " "Retard addicional en segons de lactivador abans que comenci el processament "
@ -73,15 +73,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Resposta" msgstr "Resposta"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Directori de còpies de seguretat" msgstr "Directori de còpies de seguretat"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -106,7 +106,7 @@ msgstr "Domini blocat"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -122,7 +122,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Fonts de la llista negra" msgstr "Fonts de la llista negra"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -137,6 +137,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -155,26 +161,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Recompte" msgstr "Recompte"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Directori del DNS" msgstr "Directori del DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Reinicialització de fitxers del DNS" msgstr "Reinicialització de fitxers del DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -188,7 +194,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -196,21 +202,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -219,39 +225,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Domini" msgstr "Domini"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilitat de baixades" msgstr "Utilitat de baixades"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Notificació per correu" msgstr "Notificació per correu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adreça de destinatari de correu" msgstr "Adreça de destinatari de correu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr "Edita la llista blanca"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -277,7 +283,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -299,11 +305,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -313,11 +319,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Purga la memòria cau del DNS" msgstr "Purga la memòria cau del DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -325,7 +331,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Força el DNS local" msgstr "Força el DNS local"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -344,7 +350,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -356,7 +362,15 @@ msgstr "Darrera execució"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -366,7 +380,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -384,7 +398,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "Llista dutilitats de baixada admeses i plenament preconfigurades." msgstr "Llista dutilitats de baixada admeses i plenament preconfigurades."
@ -397,7 +411,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Servei de prioritat baixa" msgstr "Servei de prioritat baixa"
@ -418,7 +432,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visió de conjunt" msgstr "Visió de conjunt"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -430,13 +444,13 @@ msgstr "Consulta"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -446,7 +460,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -474,35 +488,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -529,23 +547,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Desa" msgstr "Desa"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -557,13 +571,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -573,11 +587,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -597,23 +611,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -665,7 +679,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -679,11 +693,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -692,7 +706,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Enregistrament detallat de depuració" msgstr "Enregistrament detallat de depuració"
@ -707,11 +721,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -719,15 +733,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Dodatečné zpoždění v sekundách před začátkem zpracování blokování reklamy." "Dodatečné zpoždění v sekundách před začátkem zpracování blokování reklamy."
@ -72,15 +72,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Odpověd" msgstr "Odpověd"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Záložní adresář" msgstr "Záložní adresář"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -105,7 +105,7 @@ msgstr "Blokované domény"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -121,7 +121,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Zdroje seznamů blokování" msgstr "Zdroje seznamů blokování"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -136,6 +136,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -154,26 +160,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Počet" msgstr "Počet"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Adresář DNS" msgstr "Adresář DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Resetování souboru DNS" msgstr "Resetování souboru DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -187,7 +193,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -195,21 +201,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -218,39 +224,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Doména" msgstr "Doména"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Nástroj pro stahování" msgstr "Nástroj pro stahování"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Oznámení e-mailem" msgstr "Oznámení e-mailem"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adresa příjemce e-mailu" msgstr "Adresa příjemce e-mailu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -268,7 +274,7 @@ msgstr "Upravit whitelist"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -276,7 +282,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -298,11 +304,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -312,11 +318,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Vyprázdnit mezipaměť DNS" msgstr "Vyprázdnit mezipaměť DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -324,7 +330,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Vynutit lokální DNS" msgstr "Vynutit lokální DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -343,7 +349,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -355,7 +361,15 @@ msgstr "Poslední spuštění"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -365,7 +379,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -383,7 +397,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Seznam podporovaných a plně předkonfigurovaných nástrojů pro stahování." "Seznam podporovaných a plně předkonfigurovaných nástrojů pro stahování."
@ -397,7 +411,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Služba s nízkou prioritou" msgstr "Služba s nízkou prioritou"
@ -418,7 +432,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Přehled" msgstr "Přehled"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -430,13 +444,13 @@ msgstr "Dotaz"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Adresa příjemce pro e-maily s upozorněním." msgstr "Adresa příjemce pro e-maily s upozorněním."
@ -446,7 +460,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -474,35 +488,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Počet bloků sestavy" msgstr "Počet bloků sestavy"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Velikost bloků sestavy" msgstr "Velikost bloků sestavy"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Adresář sestav" msgstr "Adresář sestav"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Rozhraní sestavy" msgstr "Rozhraní sestavy"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -529,23 +547,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Uložit" msgstr "Uložit"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -557,13 +571,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -573,11 +587,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -597,23 +611,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "Pozastavit" msgstr "Pozastavit"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "Cílový adresář pro vygenerovaný blokovací seznam 'adb_list.overall'." msgstr "Cílový adresář pro vygenerovaný blokovací seznam 'adb_list.overall'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -665,7 +679,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Čas" msgstr "Čas"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -679,11 +693,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Prodleva spuštění" msgstr "Prodleva spuštění"
@ -692,7 +706,7 @@ msgstr "Prodleva spuštění"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Podrobné protokolování ladění" msgstr "Podrobné protokolování ladění"
@ -707,11 +721,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -719,15 +733,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr "Füge diese (Sub-)Domain zur lokalen Blacklist."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Füge diese (Sub-)Domain zur lokalen Whiteklist." msgstr "Füge diese (Sub-)Domain zur lokalen Whiteklist."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "Zusätzliche Jail-Sperrliste" msgstr "Zusätzliche Jail-Sperrliste"
@ -51,7 +51,7 @@ msgstr "Zusätzliche Jail-Sperrliste"
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Zusätzliche Einstellungen" msgstr "Zusätzliche Einstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Zusätzliche Verzögerung (in Sekunden) bis zur Verarbeitung durch den " "Zusätzliche Verzögerung (in Sekunden) bis zur Verarbeitung durch den "
@ -73,15 +73,15 @@ msgstr "Fortgeschrittene Berichtseinstellungen"
msgid "Answer" msgid "Answer"
msgstr "Antwort" msgstr "Antwort"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Backupverzeichnis" msgstr "Backupverzeichnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Basis-Temp-Verzeichnis" msgstr "Basis-Temp-Verzeichnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -110,7 +110,7 @@ msgstr "Blockierte Domain"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Gesperrte Domains" msgstr "Gesperrte Domains"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Sperrliste Backup" msgstr "Sperrliste Backup"
@ -126,7 +126,7 @@ msgstr "Sperrlisten abfragen..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Blockierlisten-Quellen" msgstr "Blockierlisten-Quellen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -144,6 +144,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -166,7 +172,7 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Anzahl" msgstr "Anzahl"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
@ -175,19 +181,19 @@ msgstr ""
"sofort ab dem Booten oder im Fall von Downloadfehlern zur Verfügung zu haben." "sofort ab dem Booten oder im Fall von Downloadfehlern zur Verfügung zu haben."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 #: 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:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "DNS-Backend" msgstr "DNS-Backend"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS-Verzeichnis" msgstr "DNS-Verzeichnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS-Datei zurücksetzen" msgstr "DNS-Datei zurücksetzen"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -201,7 +207,7 @@ msgstr "DNS Anforderungen (blockiert)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "DNS-Abfragen (gesamt)" msgstr "DNS-Abfragen (gesamt)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS-Restart-Timeout" msgstr "DNS-Restart-Timeout"
@ -209,15 +215,15 @@ msgstr "DNS-Restart-Timeout"
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Deaktiviere DNS-Zulassen" msgstr "Deaktiviere DNS-Zulassen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Deaktiviere DNS-Restarts" msgstr "Deaktiviere DNS-Restarts"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -225,7 +231,7 @@ msgstr ""
"Deaktiviere das Triggern von Neustarts des DNS-Backends durch Adblock per " "Deaktiviere das Triggern von Neustarts des DNS-Backends durch Adblock per "
"Autoload/inotify-Funktionsaufrufe." "Autoload/inotify-Funktionsaufrufe."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Deaktiviere selektives DNS-Whitelisting (RPZ-Passthrough)." msgstr "Deaktiviere selektives DNS-Whitelisting (RPZ-Passthrough)."
@ -234,39 +240,39 @@ msgstr "Deaktiviere selektives DNS-Whitelisting (RPZ-Passthrough)."
msgid "Domain" msgid "Domain"
msgstr "Domäne" msgstr "Domäne"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Downloadparameter" msgstr "Downloadparameter"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Download-Warteschlange" msgstr "Download-Warteschlange"
#: 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Download-Werkzeug" msgstr "Download-Werkzeug"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "E-Mail-Benachrichtigung" msgstr "E-Mail-Benachrichtigung"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Email-Benachrichtigszähler" msgstr "Email-Benachrichtigszähler"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Email-Profil" msgstr "Email-Profil"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-Mail-Empfängeradresse" msgstr "E-Mail-Empfängeradresse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Email-Absenderadresse" msgstr "Email-Absenderadresse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Email-Betreff" msgstr "Email-Betreff"
@ -284,7 +290,7 @@ msgstr "Whiteliste bearbeiten"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "Aktiviere SafeSearch" msgstr "Aktiviere SafeSearch"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Aktiviere moderate SafeSearch-Filter für YouTube." msgstr "Aktiviere moderate SafeSearch-Filter für YouTube."
@ -292,7 +298,7 @@ msgstr "Aktiviere moderate SafeSearch-Filter für YouTube."
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Aktiviere den Adblock-Dienst." msgstr "Aktiviere den Adblock-Dienst."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "Aktiviere ausführliche Debug-Logs im Fehlerfall." msgstr "Aktiviere ausführliche Debug-Logs im Fehlerfall."
@ -314,11 +320,11 @@ msgstr "Erzwinge SafeSearch für Google, Bing, DuckDuckGo, Yandex und Pixabay."
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Bestehende Job(s)" msgstr "Bestehende Job(s)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "Externe DNS-Abfragedomain" msgstr "Externe DNS-Abfragedomain"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -330,11 +336,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Filterkriterien wie z.B. Datum, Domain oder Client (optional)" msgstr "Filterkriterien wie z.B. Datum, Domain oder Client (optional)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "DNS-Cache leeren" msgstr "DNS-Cache leeren"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "DNS-Cache leeren, bevor mit Adblock-Verarbeitung fortgefahren wird." msgstr "DNS-Cache leeren, bevor mit Adblock-Verarbeitung fortgefahren wird."
@ -342,7 +348,7 @@ msgstr "DNS-Cache leeren, bevor mit Adblock-Verarbeitung fortgefahren wird."
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Lokales DNS erzwingen" msgstr "Lokales DNS erzwingen"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -364,7 +370,7 @@ msgstr "Zugriff auf adblock LuCI app erlauten"
msgid "Information" msgid "Information"
msgstr "Informationen" msgstr "Informationen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "Jail-Verzeichnis" msgstr "Jail-Verzeichnis"
@ -376,7 +382,15 @@ msgstr "Letzter Lauf"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Letzte DNS-Abfragen" msgstr "Letzte DNS-Abfragen"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
"Liste an verfügbaren Netzwerkschnittstellen die von tcpdump verwendet werden " "Liste an verfügbaren Netzwerkschnittstellen die von tcpdump verwendet werden "
@ -391,7 +405,7 @@ msgstr ""
"triggern. Wähle \"unspecified\", um einen herkömmlichen Start-Timeout-" "triggern. Wähle \"unspecified\", um einen herkömmlichen Start-Timeout-"
"Mechanismuss anstatt eines Netzwerk-Triggers zu verwenden." "Mechanismuss anstatt eines Netzwerk-Triggers zu verwenden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -420,7 +434,7 @@ msgstr ""
"mehr RAM und zusätzlich eine Multicore-CPU, z.B entpsrechende x86- oder " "mehr RAM und zusätzlich eine Multicore-CPU, z.B entpsrechende x86- oder "
"RaspberryPi-Geräte.<br /> <p>&#xa0;</p>" "RaspberryPi-Geräte.<br /> <p>&#xa0;</p>"
#: 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Liste der unterstützten und vollständig vorkonfigurierten Download-" "Liste der unterstützten und vollständig vorkonfigurierten Download-"
@ -435,7 +449,7 @@ msgstr "Lokale DNS-Ports"
msgid "Log View" msgid "Log View"
msgstr "Log-Ansicht" msgstr "Log-Ansicht"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Dienst mit niedriger Priorität" msgstr "Dienst mit niedriger Priorität"
@ -456,7 +470,7 @@ msgstr "Aktuell noch keine Adblock-Logs vorhanden!"
msgid "Overview" msgid "Overview"
msgstr "Übersicht" msgstr "Übersicht"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
"\"msmtp\"-Profil, das für Adblock-Benachrichtigunsmails verwendet wird." "\"msmtp\"-Profil, das für Adblock-Benachrichtigunsmails verwendet wird."
@ -469,7 +483,7 @@ msgstr "Abfrage"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "Frage aktive Sperrlisten und Backups über eine spezifische Domain ab." msgstr "Frage aktive Sperrlisten und Backups über eine spezifische Domain ab."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
@ -477,7 +491,7 @@ msgstr ""
"Erhöhe den Benachrichtigunszähler um Emails zu erhalten, wenn die Gesamtzahl " "Erhöhe den Benachrichtigunszähler um Emails zu erhalten, wenn die Gesamtzahl "
"der Blocklisten kleiner gleich diesem Schwellwert ist." "der Blocklisten kleiner gleich diesem Schwellwert ist."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Empfängeradresse für Adblock-Benachrichtigungs-E-Mails." msgstr "Empfängeradresse für Adblock-Benachrichtigungs-E-Mails."
@ -489,7 +503,7 @@ msgstr ""
"Leite alle DNS-Anfragen an die \"Lan\"-Zone auf den lokalen DNS-Resolver um, " "Leite alle DNS-Anfragen an die \"Lan\"-Zone auf den lokalen DNS-Resolver um, "
"gilt sowohl für UDP und TCP-Protokolle." "gilt sowohl für UDP und TCP-Protokolle."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -520,35 +534,39 @@ msgstr "Aktualisiere Timer..."
msgid "Refresh..." msgid "Refresh..."
msgstr "Aktualisiere..." msgstr "Aktualisiere..."
#: 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Berichte Datenblock-Anzahl" msgstr "Berichte Datenblock-Anzahl"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Berichte Datenblock-Größe" msgstr "Berichte Datenblock-Größe"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Verzeichnis für Berichte" msgstr "Verzeichnis für Berichte"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Berichte-Schnittstelle" msgstr "Berichte-Schnittstelle"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "Berichte Ports" msgstr "Berichte Ports"
#: 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "Berichte Datenblock-Nutzung durch tcpdump." msgstr "Berichte Datenblock-Nutzung durch tcpdump."
#: 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "Berichte von tcpdump verwendete Datenblockgröße in MByte." msgstr "Berichte von tcpdump verwendete Datenblockgröße in MByte."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -578,17 +596,13 @@ msgstr "Run-Interfaces"
msgid "Run Utils" msgid "Run Utils"
msgstr "Run-Werkzeuge" msgstr "Run-Werkzeuge"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
msgstr "moderates SafeSearch"
#: 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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
@ -596,7 +610,7 @@ msgstr ""
"Sende relevante Adblock-Benachrichtigungen per Email. Hinweis: Hierzu muss " "Sende relevante Adblock-Benachrichtigungen per Email. Hinweis: Hierzu muss "
"das \"msmtp\"-Zusatzpaket installiert sein." "das \"msmtp\"-Zusatzpaket installiert sein."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "Absenderadresse für Adblock-Benachrichtigungsmails." msgstr "Absenderadresse für Adblock-Benachrichtigungsmails."
@ -608,7 +622,7 @@ msgstr "(Er)Setze einen neuen Adblock-Job"
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
@ -616,7 +630,7 @@ msgstr ""
"Größe der Download-Warteschlange für laufende Downloads (inkl. Platzbedarf " "Größe der Download-Warteschlange für laufende Downloads (inkl. Platzbedarf "
"für Sortieren, Zusammenführen)." "für Sortieren, Zusammenführen)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "Quellen (Größe, Fokus)" msgstr "Quellen (Größe, Fokus)"
@ -628,11 +642,11 @@ msgstr ""
"Leerzeichengetrennte Liste von DNS-relevanten Firewall-Ports, die zwingend " "Leerzeichengetrennte Liste von DNS-relevanten Firewall-Ports, die zwingend "
"lokal sein müssen." "lokal sein müssen."
#: 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "Leerzeichengetrennte Liste an Ports die von tcpdump genutzt werden." msgstr "Leerzeichengetrennte Liste an Ports die von tcpdump genutzt werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
"Spezielle Konfigurationseinstellungen für das gewählte Download-Programm." "Spezielle Konfigurationseinstellungen für das gewählte Download-Programm."
@ -653,7 +667,7 @@ msgstr "Status / Version"
msgid "Suspend" msgid "Suspend"
msgstr "Anhalten" msgstr "Anhalten"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -662,7 +676,7 @@ msgstr ""
"\" gesetzt, hier sollte besser ein USB-Stick oder anderer lokaler Speicher " "\" gesetzt, hier sollte besser ein USB-Stick oder anderer lokaler Speicher "
"verwendet werden." "verwendet werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -671,11 +685,11 @@ msgstr ""
"hier sollte besser ein USB-Stick oder anderer lokaler Speicher verwendet " "hier sollte besser ein USB-Stick oder anderer lokaler Speicher verwendet "
"werden." "werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "Zielverzeichnis für die erzeugte Sperrliste 'adb_list.overall'." msgstr "Zielverzeichnis für die erzeugte Sperrliste 'adb_list.overall'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "Zielverzeichnis für die erzeugte Jail-Sperrliste \"adb_list.jail\"." msgstr "Zielverzeichnis für die erzeugte Jail-Sperrliste \"adb_list.jail\"."
@ -737,7 +751,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Zeit" msgstr "Zeit"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "Timeout für erfolgreichen DNS-Backend-Startvorgang." msgstr "Timeout für erfolgreichen DNS-Backend-Startvorgang."
@ -753,11 +767,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top-10 Statistiken" msgstr "Top-10 Statistiken"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Betreff für Adblock-Benachrichtigungsmails." msgstr "Betreff für Adblock-Benachrichtigungsmails."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Verzögerung Trigger-Bedingung" msgstr "Verzögerung Trigger-Bedingung"
@ -766,7 +780,7 @@ msgstr "Verzögerung Trigger-Bedingung"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "Konnte Änderungen nicht speichern: %s" msgstr "Konnte Änderungen nicht speichern: %s"
#: 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Ausführliche Debug-Protokollierung" msgstr "Ausführliche Debug-Protokollierung"
@ -783,11 +797,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Whiteliste..." msgstr "Whiteliste..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
@ -795,18 +809,21 @@ msgstr "kresd (/etc/kresd)"
msgid "max. result set size" msgid "max. result set size"
msgstr "Max. Größe des Result-Sets" msgstr "Max. Größe des Result-Sets"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "named (/var/lib/bind)" msgstr "named (/var/lib/bind)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "raw (/tmp)" msgstr "raw (/tmp)"
#: 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "SafeSearch Moderate"
#~ msgstr "moderates SafeSearch"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -71,15 +71,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "φάκελος διάσωσης" msgstr "φάκελος διάσωσης"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -104,7 +104,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -120,7 +120,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Λίστα Μπλοκαρισμένων πηγών" msgstr "Λίστα Μπλοκαρισμένων πηγών"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -135,6 +135,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "πελάτης" msgstr "πελάτης"
@ -153,26 +159,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Μέτρηση" msgstr "Μέτρηση"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "κατάλογος DNS" msgstr "κατάλογος DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Επαναφορά αρχείου DNS" msgstr "Επαναφορά αρχείου DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -186,7 +192,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -194,21 +200,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Ημερομηνία" msgstr "Ημερομηνία"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -217,39 +223,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -267,7 +273,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -275,7 +281,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -297,11 +303,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -311,11 +317,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -323,7 +329,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -342,7 +348,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -354,7 +360,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -364,7 +378,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -382,7 +396,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -395,7 +409,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -416,7 +430,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -428,13 +442,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -444,7 +458,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -472,35 +486,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -527,23 +545,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -555,13 +569,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -571,11 +585,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -595,23 +609,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -663,7 +677,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -677,11 +691,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -690,7 +704,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -705,11 +719,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -717,15 +731,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -71,15 +71,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -104,7 +104,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -120,7 +120,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -135,6 +135,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -153,26 +159,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -186,7 +192,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -194,21 +200,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -217,39 +223,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -267,7 +273,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -275,7 +281,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -297,11 +303,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -311,11 +317,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -323,7 +329,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -342,7 +348,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -354,7 +360,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -364,7 +378,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -382,7 +396,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -395,7 +409,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -416,7 +430,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -428,13 +442,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -444,7 +458,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -472,35 +486,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -527,23 +545,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -555,13 +569,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -571,11 +585,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -595,23 +609,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -663,7 +677,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -677,11 +691,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -690,7 +704,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -705,11 +719,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -717,14 +731,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -46,7 +46,7 @@ msgstr "Agregue este (sub) dominio a su lista negra local."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Agregue este (sub) dominio a su lista blanca local." msgstr "Agregue este (sub) dominio a su lista blanca local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "Lista de bloqueo adicional de la cárcel" msgstr "Lista de bloqueo adicional de la cárcel"
@ -54,7 +54,7 @@ msgstr "Lista de bloqueo adicional de la cárcel"
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Configuración adicional" msgstr "Configuración adicional"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Demora adicional del disparador en segundos antes de que comience el " "Demora adicional del disparador en segundos antes de que comience el "
@ -76,15 +76,15 @@ msgstr "Configuración avanzada de informes"
msgid "Answer" msgid "Answer"
msgstr "Responder" msgstr "Responder"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Directorio de respaldo" msgstr "Directorio de respaldo"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Directorio de temperatura base" msgstr "Directorio de temperatura base"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -113,7 +113,7 @@ msgstr "Dominio bloqueado"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Dominios Bloqueados" msgstr "Dominios Bloqueados"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Copia de seguridad de lista de bloqueo" msgstr "Copia de seguridad de lista de bloqueo"
@ -129,7 +129,7 @@ msgstr "Consulta de lista de bloqueo..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Fuentes de lista de bloqueo" msgstr "Fuentes de lista de bloqueo"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -148,6 +148,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Cliente" msgstr "Cliente"
@ -170,7 +176,7 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Contar" msgstr "Contar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
@ -179,19 +185,19 @@ msgstr ""
"caso de errores de descarga o durante el inicio." "caso de errores de descarga o durante el inicio."
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "Backend de DNS" msgstr "Backend de DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Directorio DNS" msgstr "Directorio DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Restablecimiento de archivos DNS" msgstr "Restablecimiento de archivos DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -205,7 +211,7 @@ msgstr "Solicitudes DNS (bloqueadas)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "Solicitudes DNS (total)" msgstr "Solicitudes DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Tiempo de espera de reinicio de DNS" msgstr "Tiempo de espera de reinicio de DNS"
@ -213,15 +219,15 @@ msgstr "Tiempo de espera de reinicio de DNS"
msgid "Date" msgid "Date"
msgstr "Fecha" msgstr "Fecha"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Desactivar Permitir DNS" msgstr "Desactivar Permitir DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Desactivar Reinicios de DNS" msgstr "Desactivar Reinicios de DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -229,7 +235,7 @@ msgstr ""
"Desactivar los reinicios activados por adblock para back-end dns con " "Desactivar los reinicios activados por adblock para back-end dns con "
"funciones de carga automática/inotify." "funciones de carga automática/inotify."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Desactivar la lista blanca selectiva de DNS (pasar por RPZ)." msgstr "Desactivar la lista blanca selectiva de DNS (pasar por RPZ)."
@ -238,39 +244,39 @@ msgstr "Desactivar la lista blanca selectiva de DNS (pasar por RPZ)."
msgid "Domain" msgid "Domain"
msgstr "Dominio" msgstr "Dominio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Descargar parámetros" msgstr "Descargar parámetros"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Descargar Cola" msgstr "Descargar Cola"
#: 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilidad de descarga" msgstr "Utilidad de descarga"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Notificación del E-Mail" msgstr "Notificación del E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Conteo de notificaciones por E-Mail" msgstr "Conteo de notificaciones por E-Mail"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Perfil de E-Mail" msgstr "Perfil de E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Dirección del destinatario del E-Mail" msgstr "Dirección del destinatario del E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Dirección del remitente del E-Mail" msgstr "Dirección del remitente del E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Tema de E-Mail" msgstr "Tema de E-Mail"
@ -288,7 +294,7 @@ msgstr "Editar lista blanca"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "Activar SafeSearch" msgstr "Activar SafeSearch"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Activar filtros moderados de SafeSearch para YouTube." msgstr "Activar filtros moderados de SafeSearch para YouTube."
@ -296,7 +302,7 @@ msgstr "Activar filtros moderados de SafeSearch para YouTube."
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Activa el servicio Adblock." msgstr "Activa el servicio Adblock."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
"Activar el registro detallado de depuración en caso de errores de " "Activar el registro detallado de depuración en caso de errores de "
@ -322,11 +328,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Trabajo(s) existente(s)" msgstr "Trabajo(s) existente(s)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "Dominio de búsqueda de DNS externo" msgstr "Dominio de búsqueda de DNS externo"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -339,11 +345,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Criterios de filtro como fecha, dominio o cliente (opcional)" msgstr "Criterios de filtro como fecha, dominio o cliente (opcional)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Vaciar caché de DNS" msgstr "Vaciar caché de DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Vacíe la caché de DNS antes del procesamiento de adblock también." msgstr "Vacíe la caché de DNS antes del procesamiento de adblock también."
@ -351,7 +357,7 @@ msgstr "Vacíe la caché de DNS antes del procesamiento de adblock también."
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Forzar DNS local" msgstr "Forzar DNS local"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -374,7 +380,7 @@ msgstr "Conceder acceso a la aplicación adblock de LuCI"
msgid "Information" msgid "Information"
msgstr "Información" msgstr "Información"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "Directorio de la cárcel" msgstr "Directorio de la cárcel"
@ -386,7 +392,15 @@ msgstr "Último inicio"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Últimas solicitudes de DNS" msgstr "Últimas solicitudes de DNS"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "Lista de dispositivos de red disponibles utilizados por tcpdump." msgstr "Lista de dispositivos de red disponibles utilizados por tcpdump."
@ -399,7 +413,7 @@ msgstr ""
"Elija 'No especificado' para usar un tiempo de espera de inicio clásico en " "Elija 'No especificado' para usar un tiempo de espera de inicio clásico en "
"lugar de un disparador de red." "lugar de un disparador de red."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -428,7 +442,7 @@ msgstr ""
"MByte,<br /> &#8226;&#xa0;<b>XXL</b> (200k-) necesita más RAM y soporte " "MByte,<br /> &#8226;&#xa0;<b>XXL</b> (200k-) necesita más RAM y soporte "
"multinúcleo, p. ej. x86 o dispositivos Raspberry.<br /><p></p>" "multinúcleo, p. ej. x86 o dispositivos Raspberry.<br /><p></p>"
#: 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Lista de utilidades de descarga totalmente preconfiguradas y compatibles." "Lista de utilidades de descarga totalmente preconfiguradas y compatibles."
@ -442,7 +456,7 @@ msgstr "Puertos DNS locales"
msgid "Log View" msgid "Log View"
msgstr "Vista de registro" msgstr "Vista de registro"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Servicio con prioridad baja" msgstr "Servicio con prioridad baja"
@ -463,7 +477,7 @@ msgstr "¡Aún no hay registros relacionados con adblock!"
msgid "Overview" msgid "Overview"
msgstr "Visión general" msgstr "Visión general"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Perfil utilizado por 'msmtp' para notificaciones de E-Mails adblock." msgstr "Perfil utilizado por 'msmtp' para notificaciones de E-Mails adblock."
@ -477,7 +491,7 @@ msgstr ""
"Consulta listas de bloqueo activas y copias de seguridad para un dominio " "Consulta listas de bloqueo activas y copias de seguridad para un dominio "
"específico." "específico."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
@ -485,7 +499,7 @@ msgstr ""
"Aumente el recuento de notificaciones para obtener correos electrónicos si " "Aumente el recuento de notificaciones para obtener correos electrónicos si "
"el recuento general de la lista de bloqueo es menor o igual al límite dado." "el recuento general de la lista de bloqueo es menor o igual al límite dado."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Dirección del receptor para la notificación de bloqueos electrónicos." msgstr "Dirección del receptor para la notificación de bloqueos electrónicos."
@ -497,7 +511,7 @@ msgstr ""
"Redireccionar todas las consultas DNS desde la zona 'lan' al solucionador " "Redireccionar todas las consultas DNS desde la zona 'lan' al solucionador "
"DNS local, se aplica al protocolo UDP y TCP." "DNS local, se aplica al protocolo UDP y TCP."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -528,35 +542,39 @@ msgstr "Actualizar temporizador..."
msgid "Refresh..." msgid "Refresh..."
msgstr "Actualizar..." msgstr "Actualizar..."
#: 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Informe de recuento de fragmentos" msgstr "Informe de recuento de fragmentos"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Tamaño del fragmento de informe" msgstr "Tamaño del fragmento de informe"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Directorio de informes" msgstr "Directorio de informes"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Interfaz de informe" msgstr "Interfaz de informe"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "Informar puertos" msgstr "Informar puertos"
#: 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "Informe el recuento de fragmentos utilizado por tcpdump." msgstr "Informe el recuento de fragmentos utilizado por tcpdump."
#: 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "Informe el tamaño del fragmento utilizado por tcpdump en MByte." msgstr "Informe el tamaño del fragmento utilizado por tcpdump en MByte."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -586,17 +604,13 @@ msgstr "Ejecutar interfaces"
msgid "Run Utils" msgid "Run Utils"
msgstr "Ejecutar utilidades" msgstr "Ejecutar utilidades"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
msgstr "SafeSearch Moderado"
#: 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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
@ -604,7 +618,7 @@ msgstr ""
"Enviar correos electrónicos de notificación relacionados con adblock. Tenga " "Enviar correos electrónicos de notificación relacionados con adblock. Tenga "
"en cuenta: esto necesita una instalación adicional del paquete 'msmtp'." "en cuenta: esto necesita una instalación adicional del paquete 'msmtp'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
"Dirección del remitente para los correos electrónicos de notificación de " "Dirección del remitente para los correos electrónicos de notificación de "
@ -618,7 +632,7 @@ msgstr "Establecer/Reemplazar un nuevo trabajo de adblock"
msgid "Settings" msgid "Settings"
msgstr "Configuraciones" msgstr "Configuraciones"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
@ -626,7 +640,7 @@ msgstr ""
"Tamaño de la cola de descarga para el procesamiento de descarga (incluida la " "Tamaño de la cola de descarga para el procesamiento de descarga (incluida la "
"clasificación, fusión, etc.) en paralelo." "clasificación, fusión, etc.) en paralelo."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "Fuentes (tamaño, enfoque)" msgstr "Fuentes (tamaño, enfoque)"
@ -638,11 +652,11 @@ msgstr ""
"Lista separada por espacios de puertos de firewall relacionados con DNS que " "Lista separada por espacios de puertos de firewall relacionados con DNS que "
"deben forzarse localmente." "deben forzarse localmente."
#: 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "Lista de puertos separados por espacios utilizados por tcpdump." msgstr "Lista de puertos separados por espacios utilizados por tcpdump."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
"Opciones de configuración especiales para la utilidad de descarga " "Opciones de configuración especiales para la utilidad de descarga "
@ -664,7 +678,7 @@ msgstr "Estado / Versión"
msgid "Suspend" msgid "Suspend"
msgstr "Suspender" msgstr "Suspender"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -673,7 +687,7 @@ msgstr ""
"valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB u " "valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB u "
"otro disco local." "otro disco local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -682,12 +696,12 @@ msgstr ""
"valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB u " "valor predeterminado es '/ tmp', utilice preferiblemente una memoria USB u "
"otro disco local." "otro disco local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
"Directorio de destino para la lista de bloqueo generada 'adb_list.overall'." "Directorio de destino para la lista de bloqueo generada 'adb_list.overall'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
"Directorio de destino para la lista de bloqueo de cárcel generada 'adb_list." "Directorio de destino para la lista de bloqueo de cárcel generada 'adb_list."
@ -753,7 +767,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Hora" msgstr "Hora"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "Tiempo de espera para esperar un reinicio de backend de DNS exitoso." msgstr "Tiempo de espera para esperar un reinicio de backend de DNS exitoso."
@ -769,11 +783,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top 10 estadísticas" msgstr "Top 10 estadísticas"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Tema para los correos electrónicos de notificación de adblock." msgstr "Tema para los correos electrónicos de notificación de adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Retraso de disparo" msgstr "Retraso de disparo"
@ -782,7 +796,7 @@ msgstr "Retraso de disparo"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "No se pueden guardar los cambios: %s" msgstr "No se pueden guardar los cambios: %s"
#: 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registro de depuración detallado" msgstr "Registro de depuración detallado"
@ -799,11 +813,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Lista blanca..." msgstr "Lista blanca..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
@ -811,18 +825,21 @@ msgstr "kresd (/etc/kresd)"
msgid "max. result set size" msgid "max. result set size"
msgstr "máx. tamaño del conjunto de resultados" msgstr "máx. tamaño del conjunto de resultados"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "llamado (/var/lib/bind)" msgstr "llamado (/var/lib/bind)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "crudo (/tmp)" msgstr "crudo (/tmp)"
#: 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "SafeSearch Moderate"
#~ msgstr "SafeSearch Moderado"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -43,7 +43,7 @@ msgstr "Lisää tämä (ali-)verkkonimi kieltolistallesi."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Lisää tämä (ali-)verkkonimi sallittujen listallesi." msgstr "Lisää tämä (ali-)verkkonimi sallittujen listallesi."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Lisäasetukset" msgstr "Lisäasetukset"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Ylimääräinen odotusaika sekunteina ennen adblock-käsittelyn aloittamista." "Ylimääräinen odotusaika sekunteina ennen adblock-käsittelyn aloittamista."
@ -72,15 +72,15 @@ msgstr "Raportoinnin lisäasetukset"
msgid "Answer" msgid "Answer"
msgstr "Vastaus" msgstr "Vastaus"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Varmuuskopiohakemisto" msgstr "Varmuuskopiohakemisto"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Oletushakemisto väliaikaistiedostoille" msgstr "Oletushakemisto väliaikaistiedostoille"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -109,7 +109,7 @@ msgstr "Estetty verkkonimi"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Estetyt verkkonimet" msgstr "Estetyt verkkonimet"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Kieltolistan varmuuskopio" msgstr "Kieltolistan varmuuskopio"
@ -125,7 +125,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Estolistojen lähteet" msgstr "Estolistojen lähteet"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -140,6 +140,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Peruuta" msgstr "Peruuta"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Asiakas" msgstr "Asiakas"
@ -158,26 +164,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Määrä" msgstr "Määrä"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "DNS-sovellus" msgstr "DNS-sovellus"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS-tiedoston resetointi" msgstr "DNS-tiedoston resetointi"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -191,7 +197,7 @@ msgstr "DNS-kyselyt (estetyt)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS:n uudelleenkäynnistyksen aikaraja" msgstr "DNS:n uudelleenkäynnistyksen aikaraja"
@ -199,15 +205,15 @@ msgstr "DNS:n uudelleenkäynnistyksen aikaraja"
msgid "Date" msgid "Date"
msgstr "Päivä" msgstr "Päivä"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Estä DNS:n salliminen" msgstr "Estä DNS:n salliminen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Estä DNS:n uudelleenkäynnistykset" msgstr "Estä DNS:n uudelleenkäynnistykset"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -215,7 +221,7 @@ msgstr ""
"Estä adblockin aiheuttamat DNS-sovelluksen uudelleenkäynnistykset autoload/" "Estä adblockin aiheuttamat DNS-sovelluksen uudelleenkäynnistykset autoload/"
"inotify-funktioilla." "inotify-funktioilla."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -224,39 +230,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Verkkonimi" msgstr "Verkkonimi"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Latausparametrit" msgstr "Latausparametrit"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Latausjono" msgstr "Latausjono"
#: 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Lataustyökalu" msgstr "Lataustyökalu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Sähköposti-ilmoitus" msgstr "Sähköposti-ilmoitus"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Sähköposti-ilmoitusten määrä" msgstr "Sähköposti-ilmoitusten määrä"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Sähköpostiprofiili" msgstr "Sähköpostiprofiili"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Sähköposti: vastaanottajan osoite" msgstr "Sähköposti: vastaanottajan osoite"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Sähköposti: lähettäjän osoite" msgstr "Sähköposti: lähettäjän osoite"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Sähköposti: otsikko" msgstr "Sähköposti: otsikko"
@ -274,7 +280,7 @@ msgstr "Editoi sallittujen lista"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -282,7 +288,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Ota Adblock-palvelu käyttöön." msgstr "Ota Adblock-palvelu käyttöön."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "Runsas lokisisältö toimintojen virheiden etsimistä varten." msgstr "Runsas lokisisältö toimintojen virheiden etsimistä varten."
@ -304,11 +310,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Nykyiset työt" msgstr "Nykyiset työt"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -318,11 +324,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Suodatintekijät kuten päivä, verkkonimi tai asiakas (valinnainen)" msgstr "Suodatintekijät kuten päivä, verkkonimi tai asiakas (valinnainen)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Tyhjennä DNS-välimuisti" msgstr "Tyhjennä DNS-välimuisti"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Tyhjennä DNS-välimuisti ennen Adblock-sääntöjen käsittelyä" msgstr "Tyhjennä DNS-välimuisti ennen Adblock-sääntöjen käsittelyä"
@ -330,7 +336,7 @@ msgstr "Tyhjennä DNS-välimuisti ennen Adblock-sääntöjen käsittelyä"
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Pakota paikallinen DNS" msgstr "Pakota paikallinen DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -349,7 +355,7 @@ msgstr "Salli pääsy Adblock-asetuksiin"
msgid "Information" msgid "Information"
msgstr "Tietoja" msgstr "Tietoja"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -361,7 +367,15 @@ msgstr "Viimeksi ajettu"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Viimeiset DNS-kyselyt" msgstr "Viimeiset DNS-kyselyt"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -371,7 +385,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -389,7 +403,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "Tuetut ja valmiiksi asetetut lataustyökalut" msgstr "Tuetut ja valmiiksi asetetut lataustyökalut"
@ -402,7 +416,7 @@ msgstr "Paikalliset DNS-portit"
msgid "Log View" msgid "Log View"
msgstr "Lokinäkymä" msgstr "Lokinäkymä"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Matala sovelluksen prioriteetti" msgstr "Matala sovelluksen prioriteetti"
@ -423,7 +437,7 @@ msgstr "Ei vielä Adblock-lokeja!"
msgid "Overview" msgid "Overview"
msgstr "Yhteenveto" msgstr "Yhteenveto"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -435,13 +449,13 @@ msgstr "Kysely"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Vastaanottajan sähköpostiosoite Adblockin ilmoituksille." msgstr "Vastaanottajan sähköpostiosoite Adblockin ilmoituksille."
@ -453,7 +467,7 @@ msgstr ""
"Ohjaa kaikki LAN-vyöhykkeeltä tulevat DNS-kyselyt paikalliselle DNS-" "Ohjaa kaikki LAN-vyöhykkeeltä tulevat DNS-kyselyt paikalliselle DNS-"
"palvelimelle, sekä UDP- että TCP-protokollat." "palvelimelle, sekä UDP- että TCP-protokollat."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -481,35 +495,39 @@ msgstr "Päivitysajastin..."
msgid "Refresh..." msgid "Refresh..."
msgstr "Päivitä..." msgstr "Päivitä..."
#: 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Raporttipalojen määrä" msgstr "Raporttipalojen määrä"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Raporttipalojen koko" msgstr "Raporttipalojen koko"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Raporttihakemisto" msgstr "Raporttihakemisto"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Raportoitava sovitin" msgstr "Raportoitava sovitin"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "Raportoitavat portit" msgstr "Raportoitavat portit"
#: 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -536,23 +554,19 @@ msgstr "Ajettavat sovittimet"
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Tallenna" msgstr "Tallenna"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "Lähettäjän osoite Adblockin sähköposti-ilmoituksille." msgstr "Lähettäjän osoite Adblockin sähköposti-ilmoituksille."
@ -564,13 +578,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "Asetukset" msgstr "Asetukset"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "Lähteet (koko, fokus)" msgstr "Lähteet (koko, fokus)"
@ -580,11 +594,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -604,23 +618,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -672,7 +686,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -686,11 +700,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -699,7 +713,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -714,11 +728,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -726,14 +740,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr "Ajout sous-domaine au réseau local blacklisté."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Ajout sous-domaine au réseau local whitelisté." msgstr "Ajout sous-domaine au réseau local whitelisté."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "Additionnel Bannis Blocklisté" msgstr "Additionnel Bannis Blocklisté"
@ -51,7 +51,7 @@ msgstr "Additionnel Bannis Blocklisté"
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Paramètres additionnels" msgstr "Paramètres additionnels"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Délai de déclenchement supplémentaire en secondes avant que le bloqueur de " "Délai de déclenchement supplémentaire en secondes avant que le bloqueur de "
@ -73,15 +73,15 @@ msgstr "Paramètres de rapport avancés"
msgid "Answer" msgid "Answer"
msgstr "Répondre" msgstr "Répondre"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Répertoire de sauvegarde" msgstr "Répertoire de sauvegarde"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Répertoire Temporaire" msgstr "Répertoire Temporaire"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -110,7 +110,7 @@ msgstr "Domaines bloqués"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Domaines bloqués" msgstr "Domaines bloqués"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Sauvegarde de la liste de blocage" msgstr "Sauvegarde de la liste de blocage"
@ -126,7 +126,7 @@ msgstr "Demande Blocklist..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Sources des listes de blocage" msgstr "Sources des listes de blocage"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -145,6 +145,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -168,7 +174,7 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Compteur" msgstr "Compteur"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
@ -177,19 +183,19 @@ msgstr ""
"utilisées en cas d'erreurs de téléchargement ou lors du démarrage." "utilisées en cas d'erreurs de téléchargement ou lors du démarrage."
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "Backend du DNS" msgstr "Backend du DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Répertoire du DNS" msgstr "Répertoire du DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Réinitialiser le fichier de DNS" msgstr "Réinitialiser le fichier de DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -203,7 +209,7 @@ msgstr "Requêtes DNS (bloquées)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "Requêtes DNS (totales)" msgstr "Requêtes DNS (totales)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Délai de redémarrage DNS" msgstr "Délai de redémarrage DNS"
@ -211,15 +217,15 @@ msgstr "Délai de redémarrage DNS"
msgid "Date" msgid "Date"
msgstr "Date" msgstr "Date"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Désactiver l'autorisation DNS" msgstr "Désactiver l'autorisation DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Désactiver les redémarrages DNS" msgstr "Désactiver les redémarrages DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -227,7 +233,7 @@ msgstr ""
"Désactiver les redémarrages déclenchés par adblock pour les backends dns " "Désactiver les redémarrages déclenchés par adblock pour les backends dns "
"avec des fonctions d'auto-chargement/notification." "avec des fonctions d'auto-chargement/notification."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Désactiver la liste blanche sélective du DNS (passthrough RPZ)." msgstr "Désactiver la liste blanche sélective du DNS (passthrough RPZ)."
@ -236,39 +242,39 @@ msgstr "Désactiver la liste blanche sélective du DNS (passthrough RPZ)."
msgid "Domain" msgid "Domain"
msgstr "Domaine" msgstr "Domaine"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Paramètres Téléchargement" msgstr "Paramètres Téléchargement"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Queue de Téléchargement" msgstr "Queue de Téléchargement"
#: 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Télécharger l'utilitaire" msgstr "Télécharger l'utilitaire"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Notifications par e-mail" msgstr "Notifications par e-mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Nombre de notifications par courrier électronique" msgstr "Nombre de notifications par courrier électronique"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Profile Email" msgstr "Profile Email"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adresse e-mail du destinataire" msgstr "Adresse e-mail du destinataire"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Adresse électronique de l'expéditeur" msgstr "Adresse électronique de l'expéditeur"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Objet du courrier électronique" msgstr "Objet du courrier électronique"
@ -286,7 +292,7 @@ msgstr "Modifier la liste blanche"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "Activé Safesearch" msgstr "Activé Safesearch"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Activez les filtres SafeSearch modérés pour youtube." msgstr "Activez les filtres SafeSearch modérés pour youtube."
@ -294,7 +300,7 @@ msgstr "Activez les filtres SafeSearch modérés pour youtube."
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Activé le service adblock." msgstr "Activé le service adblock."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
"Activez la journalisation verbale de débogage en cas d'erreurs de traitement." "Activez la journalisation verbale de débogage en cas d'erreurs de traitement."
@ -319,11 +325,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Travaux en cours" msgstr "Travaux en cours"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "Domaine de recherche DNS externe" msgstr "Domaine de recherche DNS externe"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -336,11 +342,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Critère filtre comme la date, domaine, client (option)" msgstr "Critère filtre comme la date, domaine, client (option)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Vider le cache DNS" msgstr "Vider le cache DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Videz également le cache DNS avant le traitement des adblocs." msgstr "Videz également le cache DNS avant le traitement des adblocs."
@ -348,7 +354,7 @@ msgstr "Videz également le cache DNS avant le traitement des adblocs."
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Forcer le DNS local" msgstr "Forcer le DNS local"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -371,7 +377,7 @@ msgstr "Donner tout accès à l'application LuCI adblock"
msgid "Information" msgid "Information"
msgstr "Information" msgstr "Information"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "Répertoire des bannis" msgstr "Répertoire des bannis"
@ -383,7 +389,15 @@ msgstr "Dernière exécution"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Dernière Requêtes DNS" msgstr "Dernière Requêtes DNS"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "Liste des périphériques réseau disponibles utilisés par tcpdump." msgstr "Liste des périphériques réseau disponibles utilisés par tcpdump."
@ -396,7 +410,7 @@ msgstr ""
"l'adblock. Choisissez \"non spécifié\" pour utiliser un délai de démarrage " "l'adblock. Choisissez \"non spécifié\" pour utiliser un délai de démarrage "
"classique au lieu d'un déclencheur réseau." "classique au lieu d'un déclencheur réseau."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -427,7 +441,7 @@ msgstr ""
"besoin de plus de RAM et de support Multicore, par exemple des appareils x86 " "besoin de plus de RAM et de support Multicore, par exemple des appareils x86 "
"ou Raspberry.<br /> <p>&#xa0;</p>" "ou Raspberry.<br /> <p>&#xa0;</p>"
#: 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Liste des utilitaires de téléchargement pris en charge et entièrement pré-" "Liste des utilitaires de téléchargement pris en charge et entièrement pré-"
@ -442,7 +456,7 @@ msgstr "Ports DNS locaux"
msgid "Log View" msgid "Log View"
msgstr "Vue du journal" msgstr "Vue du journal"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Service en priorité basse" msgstr "Service en priorité basse"
@ -463,7 +477,7 @@ msgstr "Pas encore de journaux liés à l'adblock !"
msgid "Overview" msgid "Overview"
msgstr "Aperçu" msgstr "Aperçu"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Profil utilisé par \"msmtp\" pour les e-mails de notification adblock." msgstr "Profil utilisé par \"msmtp\" pour les e-mails de notification adblock."
@ -477,7 +491,7 @@ msgstr ""
"Recherchez des listes de blocage actives et des sauvegardes pour un domaine " "Recherchez des listes de blocage actives et des sauvegardes pour un domaine "
"spécifique." "spécifique."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
@ -486,7 +500,7 @@ msgstr ""
"électroniques si le nombre total de blocages est inférieur ou égal à la " "électroniques si le nombre total de blocages est inférieur ou égal à la "
"limite donnée." "limite donnée."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
"Adresse du destinataire pour les e-mails de notification du bloqueur de " "Adresse du destinataire pour les e-mails de notification du bloqueur de "
@ -500,7 +514,7 @@ msgstr ""
"Rediriger toutes les requêtes DNS de la zone \"lan\" vers le résolveur DNS " "Rediriger toutes les requêtes DNS de la zone \"lan\" vers le résolveur DNS "
"local, s'applique aux protocoles UDP et TCP." "local, s'applique aux protocoles UDP et TCP."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -532,35 +546,39 @@ msgstr "Rafraîchir l'horloge..."
msgid "Refresh..." msgid "Refresh..."
msgstr "Rafraichi..." msgstr "Rafraichi..."
#: 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Rapporter le nombre de morceaux" msgstr "Rapporter le nombre de morceaux"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Rapporter la taille des morceaux" msgstr "Rapporter la taille des morceaux"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapporter le Répertoire" msgstr "Rapporter le Répertoire"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Rapporter l'Interface" msgstr "Rapporter l'Interface"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "Rapport des Ports" msgstr "Rapport des Ports"
#: 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "Signalez le nombre de morceaux utilisés par tcpdump." msgstr "Signalez le nombre de morceaux utilisés par tcpdump."
#: 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "Indiquez la taille des morceaux utilisés par tcpdump en MByte." msgstr "Indiquez la taille des morceaux utilisés par tcpdump en MByte."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -590,17 +608,13 @@ msgstr "Interfaces de travail"
msgid "Run Utils" msgid "Run Utils"
msgstr "Outils de travail" msgstr "Outils de travail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
msgstr "SafeSearch Modéré"
#: 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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Enregistrer" msgstr "Enregistrer"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
@ -608,7 +622,7 @@ msgstr ""
"Envoyer des e-mails de notification relatifs à l'adblock. Veuillez noter que " "Envoyer des e-mails de notification relatifs à l'adblock. Veuillez noter que "
"l'installation du paquet \"msmtp\" supplémentaire est nécessaire." "l'installation du paquet \"msmtp\" supplémentaire est nécessaire."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
"Adresse de l'expéditeur des courriers électroniques de notification de " "Adresse de l'expéditeur des courriers électroniques de notification de "
@ -622,7 +636,7 @@ msgstr "Définir/remplacer un nouveau travail d'adblock"
msgid "Settings" msgid "Settings"
msgstr "Paramètres" msgstr "Paramètres"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
@ -630,7 +644,7 @@ msgstr ""
"Taille de la file d'attente pour le traitement des téléchargements (y " "Taille de la file d'attente pour le traitement des téléchargements (y "
"compris le tri, la fusion, etc.) en parallèle." "compris le tri, la fusion, etc.) en parallèle."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "Sources (Taille, Focus)" msgstr "Sources (Taille, Focus)"
@ -642,11 +656,11 @@ msgstr ""
"Liste séparée par espace des ports de pare-feu liés au DNS qui doivent être " "Liste séparée par espace des ports de pare-feu liés au DNS qui doivent être "
"forcés localement." "forcés localement."
#: 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "Liste des ports utilisés par tcpdump, séparés par des espaces." msgstr "Liste des ports utilisés par tcpdump, séparés par des espaces."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
"Options de configuration spéciales pour l'utilitaire de téléchargement " "Options de configuration spéciales pour l'utilitaire de téléchargement "
@ -668,7 +682,7 @@ msgstr "Statut / Version"
msgid "Suspend" msgid "Suspend"
msgstr "Mettre en pause" msgstr "Mettre en pause"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -676,7 +690,7 @@ msgstr ""
"Répertoire cible pour les fichiers de rapports liés au DNS. La valeur par " "Répertoire cible pour les fichiers de rapports liés au DNS. La valeur par "
"défaut est '/tmp', veuillez utiliser plutot une clé usb ou un disque local." "défaut est '/tmp', veuillez utiliser plutot une clé usb ou un disque local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -685,12 +699,12 @@ msgstr ""
"défaut est '/tmp', veuillez utiliser de préférence une clé usb ou un autre " "défaut est '/tmp', veuillez utiliser de préférence une clé usb ou un autre "
"disque local." "disque local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
"Répertoire cible pour la liste de blocage générée \"adb_list.overall\"." "Répertoire cible pour la liste de blocage générée \"adb_list.overall\"."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "Répertoire cible pour la liste de blocage générée \"adb_list.jail\"." msgstr "Répertoire cible pour la liste de blocage générée \"adb_list.jail\"."
@ -756,7 +770,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Heure" msgstr "Heure"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "Délai d'attente pour un redémarrage réussi du backend du DNS." msgstr "Délai d'attente pour un redémarrage réussi du backend du DNS."
@ -772,11 +786,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top 10 Statistiques" msgstr "Top 10 Statistiques"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Objet pour les notifications par e-mails d'adblock." msgstr "Objet pour les notifications par e-mails d'adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Délai de déclenchement" msgstr "Délai de déclenchement"
@ -785,7 +799,7 @@ msgstr "Délai de déclenchement"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "Sauvegarde Impossible: %s" msgstr "Sauvegarde Impossible: %s"
#: 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Logs en mode verbeux" msgstr "Logs en mode verbeux"
@ -802,11 +816,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Liste Blanche..." msgstr "Liste Blanche..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
@ -814,18 +828,21 @@ msgstr "kresd (/etc/kresd)"
msgid "max. result set size" msgid "max. result set size"
msgstr "taille max. des résultats" msgstr "taille max. des résultats"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "named (/var/lib/bind)" msgstr "named (/var/lib/bind)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "raw (/tmp)" msgstr "raw (/tmp)"
#: 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "SafeSearch Moderate"
#~ msgstr "SafeSearch Modéré"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -37,7 +37,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -45,7 +45,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -65,15 +65,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -98,7 +98,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -129,6 +129,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -147,26 +153,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -180,7 +186,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -188,21 +194,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -211,39 +217,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -261,7 +267,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -291,11 +297,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -305,11 +311,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -317,7 +323,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -336,7 +342,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -348,7 +354,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -358,7 +372,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -376,7 +390,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -389,7 +403,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -410,7 +424,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -422,13 +436,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -438,7 +452,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -466,35 +480,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -521,23 +539,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -549,13 +563,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -565,11 +579,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -589,23 +603,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -657,7 +671,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -671,11 +685,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -684,7 +698,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -699,11 +713,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -711,14 +725,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -37,7 +37,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -45,7 +45,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -65,15 +65,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -98,7 +98,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -129,6 +129,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -147,26 +153,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -180,7 +186,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -188,21 +194,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -211,39 +217,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -261,7 +267,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -291,11 +297,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -305,11 +311,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -317,7 +323,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -336,7 +342,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -348,7 +354,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -358,7 +372,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -376,7 +390,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -389,7 +403,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -410,7 +424,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -422,13 +436,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -438,7 +452,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -466,35 +480,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -521,23 +539,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -549,13 +563,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -565,11 +579,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -589,23 +603,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -657,7 +671,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -671,11 +685,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -684,7 +698,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -699,11 +713,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -711,14 +725,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"További aktiválókésleltetés másodpercben, mielőtt a reklámblokkolás " "További aktiválókésleltetés másodpercben, mielőtt a reklámblokkolás "
@ -73,15 +73,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Válasz" msgstr "Válasz"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Biztonsági mentés könyvtára" msgstr "Biztonsági mentés könyvtára"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -106,7 +106,7 @@ msgstr "Blokkolt tartomány"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -122,7 +122,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Blokkolási lista forrásai" msgstr "Blokkolási lista forrásai"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -137,6 +137,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Mégse" msgstr "Mégse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Ügyfél" msgstr "Ügyfél"
@ -155,26 +161,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Darabszám" msgstr "Darabszám"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS könyvtár" msgstr "DNS könyvtár"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS fájlvisszaállítás" msgstr "DNS fájlvisszaállítás"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -188,7 +194,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -196,21 +202,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Dátum" msgstr "Dátum"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -219,39 +225,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Tartomány" msgstr "Tartomány"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Letöltési segédprogram" msgstr "Letöltési segédprogram"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "E-mail értesítés" msgstr "E-mail értesítés"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-mail fogadócím" msgstr "E-mail fogadócím"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr "Fehérlista szerkesztése"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -277,7 +283,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -299,11 +305,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -313,11 +319,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "DNS gyorsítótár kiürítése" msgstr "DNS gyorsítótár kiürítése"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -325,7 +331,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Helyi DNS kényszerítése" msgstr "Helyi DNS kényszerítése"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -344,7 +350,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -356,7 +362,15 @@ msgstr "Utolsó futás"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -366,7 +380,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -384,7 +398,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"A támogatott és teljesen előre beállított letöltési segédprogramok listája." "A támogatott és teljesen előre beállított letöltési segédprogramok listája."
@ -398,7 +412,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Alacsony prioritású szolgáltatás" msgstr "Alacsony prioritású szolgáltatás"
@ -419,7 +433,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Áttekintés" msgstr "Áttekintés"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -431,13 +445,13 @@ msgstr "Lekérdezés"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Fogadó címe a reklámblokkoló értesítési e-mailekhez." msgstr "Fogadó címe a reklámblokkoló értesítési e-mailekhez."
@ -447,7 +461,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -475,35 +489,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Darabok számának jelentése" msgstr "Darabok számának jelentése"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Darabok méretének jelentése" msgstr "Darabok méretének jelentése"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Könyvtár jelentése" msgstr "Könyvtár jelentése"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Csatoló jelentése" msgstr "Csatoló jelentése"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -530,23 +548,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Mentés" msgstr "Mentés"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -558,13 +572,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -574,11 +588,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -598,23 +612,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "Felfüggesztés" msgstr "Felfüggesztés"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "Célkönyvtár az előállított „adb_list.overall” blokkolási listához." msgstr "Célkönyvtár az előállított „adb_list.overall” blokkolási listához."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -668,7 +682,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Idő" msgstr "Idő"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -682,11 +696,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Aktiváló késleltetése" msgstr "Aktiváló késleltetése"
@ -695,7 +709,7 @@ msgstr "Aktiváló késleltetése"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Részletes hibakeresési naplózás" msgstr "Részletes hibakeresési naplózás"
@ -710,11 +724,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -722,15 +736,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -46,7 +46,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -54,7 +54,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "Tempo addizionale in secondi di attesa prima che adblock si avvii." msgstr "Tempo addizionale in secondi di attesa prima che adblock si avvii."
@ -74,15 +74,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Risposta" msgstr "Risposta"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Directory del Backup" msgstr "Directory del Backup"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -107,7 +107,7 @@ msgstr "Dominio bloccato"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -123,7 +123,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Fonti lista di Blocco" msgstr "Fonti lista di Blocco"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -138,6 +138,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -156,26 +162,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Numero" msgstr "Numero"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Directory DNS" msgstr "Directory DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Reset File DNS" msgstr "Reset File DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -189,7 +195,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -197,21 +203,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -220,39 +226,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Dominio" msgstr "Dominio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilità di Scaricamento" msgstr "Utilità di Scaricamento"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Notifica E-Mail" msgstr "Notifica E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-Mail destinatario" msgstr "E-Mail destinatario"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -270,7 +276,7 @@ msgstr "Modifica Lista Bianca"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -278,7 +284,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -300,11 +306,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -314,11 +320,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Pulisci Cache DNS" msgstr "Pulisci Cache DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -326,7 +332,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Forza DNS Locale" msgstr "Forza DNS Locale"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -345,7 +351,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -357,7 +363,15 @@ msgstr "Ultimo Avvio"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -367,7 +381,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -385,7 +399,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Elenco delle utility di download supportate e completamente preconfigurate." "Elenco delle utility di download supportate e completamente preconfigurate."
@ -399,7 +413,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Serviio a bassa priorità" msgstr "Serviio a bassa priorità"
@ -420,7 +434,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Riassunto" msgstr "Riassunto"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -432,13 +446,13 @@ msgstr "Interrogazione"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
"Indirizzo del destinatario per e-mail di notifica di blocco degli annunci." "Indirizzo del destinatario per e-mail di notifica di blocco degli annunci."
@ -449,7 +463,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -477,35 +491,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Directory dei report" msgstr "Directory dei report"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -532,23 +550,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Salva" msgstr "Salva"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -560,13 +574,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -576,11 +590,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -600,23 +614,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "Sospendi" msgstr "Sospendi"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "Directory per la lista di blocco generata 'adb_list.overall'." msgstr "Directory per la lista di blocco generata 'adb_list.overall'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -669,7 +683,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -683,11 +697,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Ritardo Innesco" msgstr "Ritardo Innesco"
@ -696,7 +710,7 @@ msgstr "Ritardo Innesco"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registro di Debug Dettagliato" msgstr "Registro di Debug Dettagliato"
@ -711,11 +725,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -723,15 +737,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -44,7 +44,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -52,7 +52,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "Adblock の処理が開始されるまでの、追加の遅延時間(秒)です。" msgstr "Adblock の処理が開始されるまでの、追加の遅延時間(秒)です。"
@ -72,15 +72,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "回答" msgstr "回答"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "バックアップ先 ディレクトリ" msgstr "バックアップ先 ディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -105,7 +105,7 @@ msgstr "ブロックされたドメイン"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -121,7 +121,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "ブロックリスト提供元" msgstr "ブロックリスト提供元"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -136,6 +136,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "クライアント" msgstr "クライアント"
@ -154,26 +160,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "カウント" msgstr "カウント"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS ディレクトリ" msgstr "DNS ディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS ファイル リセット" msgstr "DNS ファイル リセット"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -187,7 +193,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -195,21 +201,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "日付" msgstr "日付"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -218,39 +224,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "ドメイン" msgstr "ドメイン"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "ダウンロード ユーティリティ" msgstr "ダウンロード ユーティリティ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Eメール通知" msgstr "Eメール通知"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Eメール受信アドレス" msgstr "Eメール受信アドレス"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -268,7 +274,7 @@ msgstr "ホワイトリストの編集"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -276,7 +282,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -298,11 +304,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -312,11 +318,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "DNS キャッシュのクリア" msgstr "DNS キャッシュのクリア"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -324,7 +330,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "ローカル DNS の強制" msgstr "ローカル DNS の強制"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -343,7 +349,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -355,7 +361,15 @@ msgstr "最終実行"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -365,7 +379,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -383,7 +397,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。" msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。"
@ -396,7 +410,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "低優先度サービス" msgstr "低優先度サービス"
@ -417,7 +431,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概要" msgstr "概要"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -429,13 +443,13 @@ msgstr "検索"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "adblock 通知メールの受信アドレスです。" msgstr "adblock 通知メールの受信アドレスです。"
@ -445,7 +459,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -473,35 +487,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "レポート チャンクカウント" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "レポート チャンクサイズ" msgstr "レポート チャンクサイズ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "レポート ディレクトリ" msgstr "レポート ディレクトリ"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "レポート インターフェース" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -528,23 +546,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "保存" msgstr "保存"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -556,13 +570,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -572,11 +586,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -596,23 +610,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "一時停止" msgstr "一時停止"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "生成されたブロックリスト 'adb_list.overall' の保存先ディレクトリです。" msgstr "生成されたブロックリスト 'adb_list.overall' の保存先ディレクトリです。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -664,7 +678,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "時刻" msgstr "時刻"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -678,11 +692,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "トリガ遅延" msgstr "トリガ遅延"
@ -691,7 +705,7 @@ msgstr "トリガ遅延"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "詳細なデバッグ ログ" msgstr "詳細なデバッグ ログ"
@ -706,11 +720,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -718,15 +732,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -37,7 +37,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -45,7 +45,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -65,15 +65,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -98,7 +98,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -114,7 +114,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -129,6 +129,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -147,26 +153,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -180,7 +186,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -188,21 +194,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -211,39 +217,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -261,7 +267,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -291,11 +297,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -305,11 +311,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -317,7 +323,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -336,7 +342,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -348,7 +354,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -358,7 +372,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -376,7 +390,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -389,7 +403,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -410,7 +424,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -422,13 +436,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -438,7 +452,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -466,35 +480,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -521,23 +539,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -549,13 +563,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -565,11 +579,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -589,23 +603,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -657,7 +671,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -671,11 +685,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -684,7 +698,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -699,11 +713,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -711,14 +725,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -71,15 +71,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -104,7 +104,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -120,7 +120,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -135,6 +135,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -153,26 +159,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -186,7 +192,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -194,21 +200,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -217,39 +223,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -267,7 +273,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -275,7 +281,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -297,11 +303,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -311,11 +317,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -323,7 +329,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -342,7 +348,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -354,7 +360,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -364,7 +378,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -382,7 +396,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -395,7 +409,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -416,7 +430,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "आढावा" msgstr "आढावा"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -428,13 +442,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -444,7 +458,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -472,35 +486,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -527,23 +545,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -555,13 +569,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -571,11 +585,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -595,23 +609,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -663,7 +677,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -677,11 +691,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -690,7 +704,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -705,11 +719,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -717,15 +731,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "Terdapat kelewatan picu dalam saat sebelum proses adblock bermula." msgstr "Terdapat kelewatan picu dalam saat sebelum proses adblock bermula."
@ -71,15 +71,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Jawapan" msgstr "Jawapan"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Direktori Sandaran" msgstr "Direktori Sandaran"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -104,7 +104,7 @@ msgstr "Kawasan Liputan Yang telah disekat"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -120,7 +120,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Punca Senarai Sekatan" msgstr "Punca Senarai Sekatan"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -135,6 +135,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Pelanggan" msgstr "Pelanggan"
@ -153,26 +159,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Kiraan" msgstr "Kiraan"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Direktori DNS" msgstr "Direktori DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Reset fail DNS" msgstr "Reset fail DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -186,7 +192,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -194,21 +200,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Tarikh" msgstr "Tarikh"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -217,39 +223,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -267,7 +273,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -275,7 +281,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -297,11 +303,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -311,11 +317,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -323,7 +329,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -342,7 +348,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -354,7 +360,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -364,7 +378,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -382,7 +396,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -395,7 +409,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -416,7 +430,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -428,13 +442,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -444,7 +458,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -472,35 +486,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -527,23 +545,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -555,13 +569,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -571,11 +585,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -595,23 +609,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -663,7 +677,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -677,11 +691,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -690,7 +704,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -705,11 +719,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -717,15 +731,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Ytterligere utløserforsinkelse i sekunder før behandling av " "Ytterligere utløserforsinkelse i sekunder før behandling av "
@ -73,15 +73,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Svar" msgstr "Svar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Sikkerhetskopimappe" msgstr "Sikkerhetskopimappe"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -106,7 +106,7 @@ msgstr "Blokkert domene"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -122,7 +122,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Blokklistekilder" msgstr "Blokklistekilder"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -137,6 +137,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -155,26 +161,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Antall" msgstr "Antall"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS-mappe" msgstr "DNS-mappe"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS-filtilbakestilling" msgstr "DNS-filtilbakestilling"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -188,7 +194,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -196,21 +202,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Dato" msgstr "Dato"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -219,39 +225,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Domene" msgstr "Domene"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Nedlastingsverktøy" msgstr "Nedlastingsverktøy"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "E-postmerknad" msgstr "E-postmerknad"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-postmottagersadresse" msgstr "E-postmottagersadresse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr "Rediger hvitliste"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -277,7 +283,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -299,11 +305,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -313,11 +319,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Tøm DNS-hurtiglageret" msgstr "Tøm DNS-hurtiglageret"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -325,7 +331,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Tving lokal DNS" msgstr "Tving lokal DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -344,7 +350,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -356,7 +362,15 @@ msgstr "Sist kjørt"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -366,7 +380,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -384,7 +398,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -397,7 +411,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -418,7 +432,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -430,13 +444,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -446,7 +460,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -474,35 +488,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -529,23 +547,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -557,13 +571,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -573,11 +587,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -597,23 +611,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -665,7 +679,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -679,11 +693,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -692,7 +706,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -707,11 +721,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -719,15 +733,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -44,7 +44,7 @@ msgstr "Dodaj tę (sub-)domenę do Twojej lokalnej czarnej listy."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Dodaj tę (pod-)domenę do Twojej lokalnej białej listy." msgstr "Dodaj tę (pod-)domenę do Twojej lokalnej białej listy."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "Dodatkowa lista zablokowanych" msgstr "Dodatkowa lista zablokowanych"
@ -52,7 +52,7 @@ msgstr "Dodatkowa lista zablokowanych"
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Dodatkowe ustawienia" msgstr "Dodatkowe ustawienia"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Dodatkowe opóźnienie wyzwalacza w sekundach przed rozpoczęciem przetwarzania " "Dodatkowe opóźnienie wyzwalacza w sekundach przed rozpoczęciem przetwarzania "
@ -74,15 +74,15 @@ msgstr "Zaawansowane ustawienia raportów"
msgid "Answer" msgid "Answer"
msgstr "Odpowiedź" msgstr "Odpowiedź"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Katalog kopii zapasowej" msgstr "Katalog kopii zapasowej"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Podstawowy katalog tymczasowy" msgstr "Podstawowy katalog tymczasowy"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -111,7 +111,7 @@ msgstr "Zablokowana domena"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Zablokowane domeny" msgstr "Zablokowane domeny"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Kopia zapasowa listy zablokowanych" msgstr "Kopia zapasowa listy zablokowanych"
@ -127,7 +127,7 @@ msgstr "Zapytanie..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Źródła list" msgstr "Źródła list"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -146,6 +146,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Anuluj" msgstr "Anuluj"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -168,7 +174,7 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Licznik" msgstr "Licznik"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
@ -177,19 +183,19 @@ msgstr ""
"używane w przypadku błędów pobierania lub podczas uruchamiania." "używane w przypadku błędów pobierania lub podczas uruchamiania."
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "Zaplecze DNS" msgstr "Zaplecze DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Katalog DNS" msgstr "Katalog DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Resetuj plik DNS" msgstr "Resetuj plik DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -203,7 +209,7 @@ msgstr "Żądania DNS (zablokowane)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "Żądania DNS (ogółem)" msgstr "Żądania DNS (ogółem)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Limit czasu restartu DNS" msgstr "Limit czasu restartu DNS"
@ -211,15 +217,15 @@ msgstr "Limit czasu restartu DNS"
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Wyłącz pozwolenie na DNS" msgstr "Wyłącz pozwolenie na DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Wyłącz restart DNS" msgstr "Wyłącz restart DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -227,7 +233,7 @@ msgstr ""
"Wyłącz wyzwalane restarty adblocka dla zaplecza DNS z funkcjami Autoload/" "Wyłącz wyzwalane restarty adblocka dla zaplecza DNS z funkcjami Autoload/"
"Inotify." "Inotify."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Wyłącz selektywną białą listę DNS (RPZ)." msgstr "Wyłącz selektywną białą listę DNS (RPZ)."
@ -236,39 +242,39 @@ msgstr "Wyłącz selektywną białą listę DNS (RPZ)."
msgid "Domain" msgid "Domain"
msgstr "Domena" msgstr "Domena"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parametry pobierania" msgstr "Parametry pobierania"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Kolejka pobierania" msgstr "Kolejka pobierania"
#: 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Narzędzie pobierania" msgstr "Narzędzie pobierania"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Powiadomienie email" msgstr "Powiadomienie email"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Licznik powiadomień email" msgstr "Licznik powiadomień email"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Profil email" msgstr "Profil email"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adres email odbiorcy" msgstr "Adres email odbiorcy"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Adres email nadawcy" msgstr "Adres email nadawcy"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Temat email" msgstr "Temat email"
@ -286,7 +292,7 @@ msgstr "Edycja białej listy"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "Włącz funkcję SafeSearch" msgstr "Włącz funkcję SafeSearch"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Włącz umiarkowane filtry SafeSearch dla youtube." msgstr "Włącz umiarkowane filtry SafeSearch dla youtube."
@ -294,7 +300,7 @@ msgstr "Włącz umiarkowane filtry SafeSearch dla youtube."
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Włącz usługę adblock." msgstr "Włącz usługę adblock."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
"Włącz pełne rejestrowanie debugowania w przypadku błędów przetwarzania." "Włącz pełne rejestrowanie debugowania w przypadku błędów przetwarzania."
@ -319,11 +325,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Istniejące zadania" msgstr "Istniejące zadania"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "Zewnętrzna domena wyszukiwania DNS" msgstr "Zewnętrzna domena wyszukiwania DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -336,11 +342,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Kryteria filtrowania takie jak data, domena lub klient (opcjonalnie)" msgstr "Kryteria filtrowania takie jak data, domena lub klient (opcjonalnie)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Opróżnij pamięć podręczną DNS" msgstr "Opróżnij pamięć podręczną DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Opróżnij pamięć podręczną DNS przed przetwarzaniem adblocka." msgstr "Opróżnij pamięć podręczną DNS przed przetwarzaniem adblocka."
@ -348,7 +354,7 @@ msgstr "Opróżnij pamięć podręczną DNS przed przetwarzaniem adblocka."
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Wymuś lokalny DNS" msgstr "Wymuś lokalny DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -370,7 +376,7 @@ msgstr "Udziel dostępu LuCI do aplikacji adblock"
msgid "Information" msgid "Information"
msgstr "Informacja" msgstr "Informacja"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "Katalog więzienia" msgstr "Katalog więzienia"
@ -382,7 +388,15 @@ msgstr "Ostatnie uruchomienie"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Ostatnie zapytania DNS" msgstr "Ostatnie zapytania DNS"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "Lista dostępnych urządzeń sieciowych używanych przez tcpdump." msgstr "Lista dostępnych urządzeń sieciowych używanych przez tcpdump."
@ -395,7 +409,7 @@ msgstr ""
"'nieokreślone', aby użyć klasycznego limitu czasu uruchamiania zamiast " "'nieokreślone', aby użyć klasycznego limitu czasu uruchamiania zamiast "
"wyzwalacza sieciowego." "wyzwalacza sieciowego."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -425,7 +439,7 @@ msgstr ""
"wielordzeniowej, np. urządzenia x86 lub urządzenia typu raspberry.<br /> " "wielordzeniowej, np. urządzenia x86 lub urządzenia typu raspberry.<br /> "
"<p>&#xa0;</p>" "<p>&#xa0;</p>"
#: 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Lista obsługiwanych i wstępnie skonfigurowanych narzędzi do pobierania." "Lista obsługiwanych i wstępnie skonfigurowanych narzędzi do pobierania."
@ -439,7 +453,7 @@ msgstr "Lokalne porty DNS"
msgid "Log View" msgid "Log View"
msgstr "Widok dziennika" msgstr "Widok dziennika"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Usługa niskopriorytetowa" msgstr "Usługa niskopriorytetowa"
@ -460,7 +474,7 @@ msgstr "Brak dzienników związanych z adblockiem!"
msgid "Overview" msgid "Overview"
msgstr "Przegląd" msgstr "Przegląd"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Profil używany przez 'msmtp' do powiadamiania o blokadzie email." msgstr "Profil używany przez 'msmtp' do powiadamiania o blokadzie email."
@ -474,7 +488,7 @@ msgstr ""
"Wysyłaj zapytania do aktywnych list blokowania i kopii zapasowych dla " "Wysyłaj zapytania do aktywnych list blokowania i kopii zapasowych dla "
"określonej domeny." "określonej domeny."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
@ -482,7 +496,7 @@ msgstr ""
"Zwiększ liczbę powiadomień, aby otrzymywać wiadomości email jeśli ogólna " "Zwiększ liczbę powiadomień, aby otrzymywać wiadomości email jeśli ogólna "
"liczba blokowanych list jest mniejsza lub równa podanemu limitowi." "liczba blokowanych list jest mniejsza lub równa podanemu limitowi."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Adres odbiorcy dla powiadomień email adblocka." msgstr "Adres odbiorcy dla powiadomień email adblocka."
@ -494,7 +508,7 @@ msgstr ""
"Przekieruj wszystkie zapytania DNS ze strefy LAN do lokalnego programu " "Przekieruj wszystkie zapytania DNS ze strefy LAN do lokalnego programu "
"obsługi DNS, dotyczy protokołu UDP i TCP." "obsługi DNS, dotyczy protokołu UDP i TCP."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -524,35 +538,39 @@ msgstr "Odśwież zegar..."
msgid "Refresh..." msgid "Refresh..."
msgstr "Odświeżanie..." msgstr "Odświeżanie..."
#: 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Zgłoś liczbę fragmentów" msgstr "Zgłoś liczbę fragmentów"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Zgłoś wielkość porcji" msgstr "Zgłoś wielkość porcji"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Katalog raportów" msgstr "Katalog raportów"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Interfejs raportowania" msgstr "Interfejs raportowania"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "Porty raportowania" msgstr "Porty raportowania"
#: 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "Raportuj liczbę fragmentów używaną przez tcpdump." msgstr "Raportuj liczbę fragmentów używaną przez tcpdump."
#: 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "Raportuj wielkość fragmentów używaną przez tcpdump w MB." msgstr "Raportuj wielkość fragmentów używaną przez tcpdump w MB."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -581,17 +599,13 @@ msgstr "Uruchomione interfejsy"
msgid "Run Utils" msgid "Run Utils"
msgstr "Uruchomione narzędzia" msgstr "Uruchomione narzędzia"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
msgstr "Moderuj filtr SafeSearch"
#: 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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Zapisz" msgstr "Zapisz"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
@ -599,7 +613,7 @@ msgstr ""
"Wysyłaj powiadomienia email związane z adblock. Uwaga: wymaga to dodatkowej " "Wysyłaj powiadomienia email związane z adblock. Uwaga: wymaga to dodatkowej "
"instalacji pakietu 'msmtp'." "instalacji pakietu 'msmtp'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "Adres nadawcy dla powiadomień emailowych adblocka." msgstr "Adres nadawcy dla powiadomień emailowych adblocka."
@ -611,7 +625,7 @@ msgstr "Ustaw/Zmień nowe zadanie Adblock"
msgid "Settings" msgid "Settings"
msgstr "Ustawienia" msgstr "Ustawienia"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
@ -619,7 +633,7 @@ msgstr ""
"Rozmiar kolejki pobierania do przetwarzania plików (w tym sortowanie, " "Rozmiar kolejki pobierania do przetwarzania plików (w tym sortowanie, "
"łączenie itp.) równolegle." "łączenie itp.) równolegle."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "Źródła (wielkość, skupienie)" msgstr "Źródła (wielkość, skupienie)"
@ -631,11 +645,11 @@ msgstr ""
"Rozdzielona spacjami lista portów zapory związanych z DNS, które należy " "Rozdzielona spacjami lista portów zapory związanych z DNS, które należy "
"wymusić lokalnie." "wymusić lokalnie."
#: 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "Rozdzielona spacjami lista portów używanych przez tcpdump." msgstr "Rozdzielona spacjami lista portów używanych przez tcpdump."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "Specjalne opcje konfiguracji dla wybranego narzędzia do pobierania." msgstr "Specjalne opcje konfiguracji dla wybranego narzędzia do pobierania."
@ -655,7 +669,7 @@ msgstr "Status/Wersja"
msgid "Suspend" msgid "Suspend"
msgstr "Zawieś" msgstr "Zawieś"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -663,7 +677,7 @@ msgstr ""
"Katalog docelowy dla plików raportowania. Domyślnie jest to '/ tmp', " "Katalog docelowy dla plików raportowania. Domyślnie jest to '/ tmp', "
"najlepiej użyj pamięci USB." "najlepiej użyj pamięci USB."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -671,12 +685,12 @@ msgstr ""
"Katalog docelowy dla kopii zapasowych listy zablokowanych. Domyślnie jest to " "Katalog docelowy dla kopii zapasowych listy zablokowanych. Domyślnie jest to "
"'/tmp', użyj najlepiej pamięci USB lub innego dysku lokalnego." "'/tmp', użyj najlepiej pamięci USB lub innego dysku lokalnego."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
"Katalog docelowy dla wygenerowanej listy blokowania 'adb_list.overall'." "Katalog docelowy dla wygenerowanej listy blokowania 'adb_list.overall'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
"Katalog docelowy dla wygenerowanej listy zablokowanych 'adb_list.jail'." "Katalog docelowy dla wygenerowanej listy zablokowanych 'adb_list.jail'."
@ -740,7 +754,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Czas" msgstr "Czas"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "Limit czasu oczekiwania na pomyślne ponowne uruchomienie zaplecza DNS." msgstr "Limit czasu oczekiwania na pomyślne ponowne uruchomienie zaplecza DNS."
@ -756,11 +770,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Top 10" msgstr "Top 10"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "Temat dla powiadomień email adblocka." msgstr "Temat dla powiadomień email adblocka."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Opóźnienie wyzwalacza" msgstr "Opóźnienie wyzwalacza"
@ -769,7 +783,7 @@ msgstr "Opóźnienie wyzwalacza"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "Nie można zapisać zmian: %s" msgstr "Nie można zapisać zmian: %s"
#: 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Pełne rejestrowanie debugowania" msgstr "Pełne rejestrowanie debugowania"
@ -786,11 +800,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Biała lista ..." msgstr "Biała lista ..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
@ -798,18 +812,21 @@ msgstr "kresd (/etc/kresd)"
msgid "max. result set size" msgid "max. result set size"
msgstr "maks. rozmiar zestawu wyników" msgstr "maks. rozmiar zestawu wyników"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "named (/var/lib/bind)" msgstr "named (/var/lib/bind)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "raw (/tmp)" msgstr "raw (/tmp)"
#: 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "SafeSearch Moderate"
#~ msgstr "Moderuj filtr SafeSearch"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Atraso adicional do trigger em segundos antes do processamento do Adblock " "Atraso adicional do trigger em segundos antes do processamento do Adblock "
@ -73,15 +73,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Resposta" msgstr "Resposta"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Diretório do Backup" msgstr "Diretório do Backup"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -106,7 +106,7 @@ msgstr "Domínio Bloqueado"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -122,7 +122,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Origem da Blocklist" msgstr "Origem da Blocklist"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -137,6 +137,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Cliente" msgstr "Cliente"
@ -155,26 +161,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Contagem" msgstr "Contagem"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Diretório DNS" msgstr "Diretório DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Repor o ficheiro DNS" msgstr "Repor o ficheiro DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -188,7 +194,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -196,21 +202,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -219,39 +225,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Domínio" msgstr "Domínio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Ferramenta para descarregar" msgstr "Ferramenta para descarregar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Notificação por e-mail" msgstr "Notificação por e-mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Endereço do destinatário de e-mail" msgstr "Endereço do destinatário de e-mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr "Editar lista de permissões"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -277,7 +283,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -299,11 +305,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -313,11 +319,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Limpar o cache de DNS" msgstr "Limpar o cache de DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -325,7 +331,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Forçar o DNS Local" msgstr "Forçar o DNS Local"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -344,7 +350,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informação" msgstr "Informação"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -356,7 +362,15 @@ msgstr "Última Execução"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -366,7 +380,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -384,7 +398,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Lista de ferramentas de descarregamento suportadas e completamente pré-" "Lista de ferramentas de descarregamento suportadas e completamente pré-"
@ -399,7 +413,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Serviço de Baixa Prioridade" msgstr "Serviço de Baixa Prioridade"
@ -420,7 +434,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visão Geral" msgstr "Visão Geral"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -432,13 +446,13 @@ msgstr "Consulta"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Endereço do destinatário para e-mails de notificação do adblock." msgstr "Endereço do destinatário para e-mails de notificação do adblock."
@ -448,7 +462,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -476,35 +490,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Relatar Contagem de Porções" msgstr "Relatar Contagem de Porções"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Tamanho de Porções de Relatório" msgstr "Tamanho de Porções de Relatório"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Diretório de Relatórios" msgstr "Diretório de Relatórios"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Interface de Relatório" msgstr "Interface de Relatório"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -531,23 +549,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -559,13 +573,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -575,11 +589,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -599,24 +613,24 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "Suspender" msgstr "Suspender"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
"Diretório de destino para a lista de blocos 'adb_list.overall' gerada ." "Diretório de destino para a lista de blocos 'adb_list.overall' gerada ."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -670,7 +684,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Tempo" msgstr "Tempo"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -684,11 +698,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Atraso do Gatilho" msgstr "Atraso do Gatilho"
@ -697,7 +711,7 @@ msgstr "Atraso do Gatilho"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registro de Depuração Detalhado" msgstr "Registro de Depuração Detalhado"
@ -712,11 +726,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -724,15 +738,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -46,7 +46,7 @@ msgstr "Adicione este (sub)domínio na sua lista negra local."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Adicione este (sub)domínio na sua lista branca local." msgstr "Adicione este (sub)domínio na sua lista branca local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "Lista de Bloqueio Adicional" msgstr "Lista de Bloqueio Adicional"
@ -54,7 +54,7 @@ msgstr "Lista de Bloqueio Adicional"
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Configurações Adicionais" msgstr "Configurações Adicionais"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Atraso de gatilho adicional em segundos antes do processamento do adblock " "Atraso de gatilho adicional em segundos antes do processamento do adblock "
@ -76,15 +76,15 @@ msgstr "Configurações Avançadas do Relatório"
msgid "Answer" msgid "Answer"
msgstr "Resposta" msgstr "Resposta"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Diretório da cópia de segurança" msgstr "Diretório da cópia de segurança"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Diretório Base Temporário" msgstr "Diretório Base Temporário"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -114,7 +114,7 @@ msgstr "Domínios Bloqueados"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Domínios Bloqueados" msgstr "Domínios Bloqueados"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Cópia de Segurança da Lista de Bloqueio" msgstr "Cópia de Segurança da Lista de Bloqueio"
@ -130,7 +130,7 @@ msgstr "Pesquisando a Lista de Bloqueio..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Fontes de listas de bloqueio" msgstr "Fontes de listas de bloqueio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -149,6 +149,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Cliente" msgstr "Cliente"
@ -171,7 +177,7 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Contagem" msgstr "Contagem"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
@ -180,19 +186,19 @@ msgstr ""
"usados em caso de erros de download ou durante a inicialização." "usados em caso de erros de download ou durante a inicialização."
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "Infraestrutura do DNS" msgstr "Infraestrutura do DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Diretório DNS" msgstr "Diretório DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Zerar Arquivo de DNS" msgstr "Zerar Arquivo de DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -206,7 +212,7 @@ msgstr "Solicitações do DNS (bloqueadas)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "Solicitações do DNS (total)" msgstr "Solicitações do DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Tempo Limite para Reiniciar o DNS" msgstr "Tempo Limite para Reiniciar o DNS"
@ -214,15 +220,15 @@ msgstr "Tempo Limite para Reiniciar o DNS"
msgid "Date" msgid "Date"
msgstr "Dia" msgstr "Dia"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Desativar a opção DNS Permitir" msgstr "Desativar a opção DNS Permitir"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Desativar as Reinicializações do DNS" msgstr "Desativar as Reinicializações do DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -230,7 +236,7 @@ msgstr ""
"Desative o bloqueador de anúncios que causar a reinicialização das funções " "Desative o bloqueador de anúncios que causar a reinicialização das funções "
"autoload/inotify da infraestrutura do DNS." "autoload/inotify da infraestrutura do DNS."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Desative a lista branca seletiva do DNS (passagem pelo RPZ)." msgstr "Desative a lista branca seletiva do DNS (passagem pelo RPZ)."
@ -239,39 +245,39 @@ msgstr "Desative a lista branca seletiva do DNS (passagem pelo RPZ)."
msgid "Domain" msgid "Domain"
msgstr "Domínio" msgstr "Domínio"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parâmetros de Download" msgstr "Parâmetros de Download"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Fila de Download" msgstr "Fila de Download"
#: 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Ferramenta para Baixar" msgstr "Ferramenta para Baixar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Notificação por E-Mail" msgstr "Notificação por E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Contagem de Notificações por E-Mail" msgstr "Contagem de Notificações por E-Mail"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Perfil de E-Mail" msgstr "Perfil de E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Endereço de E-Mail do Destinatário" msgstr "Endereço de E-Mail do Destinatário"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Endereço de E-Mail do Remetente" msgstr "Endereço de E-Mail do Remetente"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Assunto do E-Mail" msgstr "Assunto do E-Mail"
@ -289,7 +295,7 @@ msgstr "Editar a Lista Branca"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "Ativar o SafeSearch" msgstr "Ativar o SafeSearch"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Ativar os filtros SafeSearch de forma moderada para o youtube." msgstr "Ativar os filtros SafeSearch de forma moderada para o youtube."
@ -297,7 +303,7 @@ msgstr "Ativar os filtros SafeSearch de forma moderada para o youtube."
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Ativar o serviço de bloqueio de anúncios." msgstr "Ativar o serviço de bloqueio de anúncios."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
"Ativa o registro de depuração detalhada nos casos de qualquer erro de " "Ativa o registro de depuração detalhada nos casos de qualquer erro de "
@ -323,11 +329,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Tarefa(s) existente(s)" msgstr "Tarefa(s) existente(s)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "Domínio de Pesquisa Externa do DNS" msgstr "Domínio de Pesquisa Externa do DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -340,11 +346,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Filtrar critérios como data, domínio ou cliente (opcional)" msgstr "Filtrar critérios como data, domínio ou cliente (opcional)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Limpar a Cache do DNS" msgstr "Limpar a Cache do DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Também liberar o Cache do DNS antes do bloqueador de anúncios." msgstr "Também liberar o Cache do DNS antes do bloqueador de anúncios."
@ -352,7 +358,7 @@ msgstr "Também liberar o Cache do DNS antes do bloqueador de anúncios."
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Usar o DNS Local" msgstr "Usar o DNS Local"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -375,7 +381,7 @@ msgstr "Conceda acesso ao aplicativo LuCI adblock"
msgid "Information" msgid "Information"
msgstr "Informações" msgstr "Informações"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "Diretório Prisional" msgstr "Diretório Prisional"
@ -387,7 +393,15 @@ msgstr "Última Execução"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "As últimas solicitações do DNS" msgstr "As últimas solicitações do DNS"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
"Lista de dispositivos da rede disponíveis que foram usados pelo tcpdump." "Lista de dispositivos da rede disponíveis que foram usados pelo tcpdump."
@ -401,7 +415,7 @@ msgstr ""
"Escolha 'não especificado' para usar um tempo de inicialização clássico em " "Escolha 'não especificado' para usar um tempo de inicialização clássico em "
"vez de um gatilho de rede." "vez de um gatilho de rede."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -432,7 +446,7 @@ msgstr ""
"mais suporte a RAM e Multicore, por exemplo. x86 ou dispositivos raspberry." "mais suporte a RAM e Multicore, por exemplo. x86 ou dispositivos raspberry."
"<br /> <p>&#xa0;</p>" "<br /> <p>&#xa0;</p>"
#: 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "Lista de ferramentas compatíveis e já pré-configuradas para download." msgstr "Lista de ferramentas compatíveis e já pré-configuradas para download."
@ -445,7 +459,7 @@ msgstr "Portas DNS Locais"
msgid "Log View" msgid "Log View"
msgstr "Exibir o Registro Log" msgstr "Exibir o Registro Log"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Serviço de Baixa Prioridade" msgstr "Serviço de Baixa Prioridade"
@ -466,7 +480,7 @@ msgstr "Ainda não há registros relacionados ao bloqueio de anúncio!"
msgid "Overview" msgid "Overview"
msgstr "Visão Geral" msgstr "Visão Geral"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
"Perfil dos E-Mails de notificação do bloqueio de anúncio utilizado por " "Perfil dos E-Mails de notificação do bloqueio de anúncio utilizado por "
@ -482,7 +496,7 @@ msgstr ""
"Consulta as listas de bloqueios ativos e as cópias de segurança para um " "Consulta as listas de bloqueios ativos e as cópias de segurança para um "
"domínio específico." "domínio específico."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
@ -490,7 +504,7 @@ msgstr ""
"Aumente a contagem de notificações para receber E-Mails caso a contagem " "Aumente a contagem de notificações para receber E-Mails caso a contagem "
"geral das listas de bloqueio seja menor ou igual ao limite informado." "geral das listas de bloqueio seja menor ou igual ao limite informado."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
"Endereço de E-Mail do destinatário para recebimento das notificações do " "Endereço de E-Mail do destinatário para recebimento das notificações do "
@ -504,7 +518,7 @@ msgstr ""
"Redirecione todas as consultas de DNS da zona 'lan' para o resolvedor de DNS " "Redirecione todas as consultas de DNS da zona 'lan' para o resolvedor de DNS "
"local, aplica-se ao protocolo UDP e TCP." "local, aplica-se ao protocolo UDP e TCP."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -536,35 +550,39 @@ msgstr "Atualizando o Temporizador..."
msgid "Refresh..." msgid "Refresh..."
msgstr "Atualizar..." msgstr "Atualizar..."
#: 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Contagem de Pedaços do Relatório" msgstr "Contagem de Pedaços do Relatório"
#: 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Tamanho dos Pedaços do Relatório" msgstr "Tamanho dos Pedaços do Relatório"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Diretório do Relatório" msgstr "Diretório do Relatório"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Interface do Relatório" msgstr "Interface do Relatório"
#: 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "Relatório das Portas" msgstr "Relatório das Portas"
#: 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "Informar a contagem dos pedaços usados pelo tcpdump." msgstr "Informar a contagem dos pedaços usados pelo tcpdump."
#: 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "Informar o tamanho do pedaço utilizado pelo tcpdump em MByte." msgstr "Informar o tamanho do pedaço utilizado pelo tcpdump em MByte."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -594,17 +612,13 @@ msgstr "Executar Interfaces"
msgid "Run Utils" msgid "Run Utils"
msgstr "Executar Utilitários" msgstr "Executar Utilitários"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
msgstr "SafeSearch Moderado"
#: 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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Salvar" msgstr "Salvar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
@ -612,7 +626,7 @@ msgstr ""
"Envie E-Mails de notificação relacionados ao bloqueio de anúncios. Note que: " "Envie E-Mails de notificação relacionados ao bloqueio de anúncios. Note que: "
"é necessário a instalação adicional do pacote 'msmtp'." "é necessário a instalação adicional do pacote 'msmtp'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
"Endereço E-Mail do remetente para as notificações do bloqueador de anúncios." "Endereço E-Mail do remetente para as notificações do bloqueador de anúncios."
@ -625,7 +639,7 @@ msgstr "Definir/Substituir um novo trabalho de bloqueio de anúncios"
msgid "Settings" msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
@ -633,7 +647,7 @@ msgstr ""
"Tamanho da fila de download para o processamento de download (incl. " "Tamanho da fila de download para o processamento de download (incl. "
"classificação, fusão etc.) em paralelo." "classificação, fusão etc.) em paralelo."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "Fontes (Tamanho, Foco)" msgstr "Fontes (Tamanho, Foco)"
@ -645,11 +659,11 @@ msgstr ""
"Lista separada por espaço das portas de firewall relacionadas ao DNS que " "Lista separada por espaço das portas de firewall relacionadas ao DNS que "
"devem ser impostas localmente." "devem ser impostas localmente."
#: 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "Lista separada por espaço das portas utilizadas pelo tcpdump." msgstr "Lista separada por espaço das portas utilizadas pelo tcpdump."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
"Opções especiais de configuração para o utilitário de download selecionado." "Opções especiais de configuração para o utilitário de download selecionado."
@ -670,7 +684,7 @@ msgstr "Condição Geral / Versão"
msgid "Suspend" msgid "Suspend"
msgstr "Suspender" msgstr "Suspender"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -679,7 +693,7 @@ msgstr ""
"diretório predefinido é '/tmp', use preferencialmente um pendrive ou um " "diretório predefinido é '/tmp', use preferencialmente um pendrive ou um "
"outro disco local." "outro disco local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
@ -688,11 +702,11 @@ msgstr ""
"diretório predefinido é '/tmp', use preferencialmente um pendrive ou outro " "diretório predefinido é '/tmp', use preferencialmente um pendrive ou outro "
"disco local." "disco local."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "Caminho do diretório para a lista nega gerada 'adb_list.overall'." msgstr "Caminho do diretório para a lista nega gerada 'adb_list.overall'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
"Diretório de destino para a lista que for gerada pelo lista de bloqueio " "Diretório de destino para a lista que for gerada pelo lista de bloqueio "
@ -757,7 +771,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Tempo" msgstr "Tempo"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "Tempo limite para aguardar o reinício bem sucedido do DNS." msgstr "Tempo limite para aguardar o reinício bem sucedido do DNS."
@ -773,13 +787,13 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "As 10 Estatísticas Principais" msgstr "As 10 Estatísticas Principais"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
"Defina o assunto dos E-Mais que serão usados nas notificações do bloqueador " "Defina o assunto dos E-Mais que serão usados nas notificações do bloqueador "
"de anúncios." "de anúncios."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Gatilho de Atraso" msgstr "Gatilho de Atraso"
@ -788,7 +802,7 @@ msgstr "Gatilho de Atraso"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "Impossível salvar as modificações: %s" msgstr "Impossível salvar as modificações: %s"
#: 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registros Detalhados de Depuração" msgstr "Registros Detalhados de Depuração"
@ -805,11 +819,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Lista Branca..." msgstr "Lista Branca..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
@ -817,18 +831,21 @@ msgstr "kresd (/etc/kresd)"
msgid "max. result set size" msgid "max. result set size"
msgstr "def. a quantidade máxima de resultados" msgstr "def. a quantidade máxima de resultados"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "named (/var/lib/bind)" msgstr "named (/var/lib/bind)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "raw (/tmp)" msgstr "raw (/tmp)"
#: 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"
#~ msgid "SafeSearch Moderate"
#~ msgstr "SafeSearch Moderado"
#~ msgid "" #~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " #~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!" #~ "than 64 MB free RAM, please only select a few of them!"

View file

@ -44,7 +44,7 @@ msgstr "Adăugați acest (sub) domeniu în lista locală de interzise."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Adăugați acest (sub) domeniu la lista locală de admise." msgstr "Adăugați acest (sub) domeniu la lista locală de admise."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -52,7 +52,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Setări Suplimentare" msgstr "Setări Suplimentare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Întârziere adițională înainte ca procesarea adblock-ului să înceapă (în " "Întârziere adițională înainte ca procesarea adblock-ului să înceapă (în "
@ -74,15 +74,15 @@ msgstr "Setări Avansate Raport"
msgid "Answer" msgid "Answer"
msgstr "Răspuns" msgstr "Răspuns"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Director copie de siguranţă" msgstr "Director copie de siguranţă"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Director Temporar de Bază" msgstr "Director Temporar de Bază"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -111,7 +111,7 @@ msgstr "Domeniu blocat"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Domenii Blocate" msgstr "Domenii Blocate"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Copie de Rezervă Pentru Lista de Blocate" msgstr "Copie de Rezervă Pentru Lista de Blocate"
@ -127,7 +127,7 @@ msgstr "Interogare Lista de Blocare..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Surse de blocare" msgstr "Surse de blocare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -146,6 +146,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Renunțare" msgstr "Renunțare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Client" msgstr "Client"
@ -168,7 +174,7 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Număr" msgstr "Număr"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
@ -177,19 +183,19 @@ msgstr ""
"utilizate în cazul erorilor de descărcare sau în timpul pornirii." "utilizate în cazul erorilor de descărcare sau în timpul pornirii."
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Director DNS" msgstr "Director DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -203,7 +209,7 @@ msgstr "Cereri DNS (blocate)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "Cereri DNS (total)" msgstr "Cereri DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Timp Repornire DNS" msgstr "Timp Repornire DNS"
@ -211,15 +217,15 @@ msgstr "Timp Repornire DNS"
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Dezactivare Permite DNS" msgstr "Dezactivare Permite DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Dezactivare Repornire DNS" msgstr "Dezactivare Repornire DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -227,7 +233,7 @@ msgstr ""
"Dezactivează repornirile declanșate de adblock pentru backend-urile dns cu " "Dezactivează repornirile declanșate de adblock pentru backend-urile dns cu "
"funcții de autoîncărcare /notificare." "funcții de autoîncărcare /notificare."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)." msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)."
@ -236,39 +242,39 @@ msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)."
msgid "Domain" msgid "Domain"
msgstr "Domeniu" msgstr "Domeniu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Descărcare Parametri" msgstr "Descărcare Parametri"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Coadă de Descărcare" msgstr "Coadă de Descărcare"
#: 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilitar descărcare" msgstr "Utilitar descărcare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Notificare e-mail" msgstr "Notificare e-mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Număr de Notificări pe E-mail" msgstr "Număr de Notificări pe E-mail"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Profil E-Mail" msgstr "Profil E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Adresa E-Mail Expeditor" msgstr "Adresa E-Mail Expeditor"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Subiect E-Mail" msgstr "Subiect E-Mail"
@ -286,7 +292,7 @@ msgstr "Editare listă albă"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "Activare Căutare Sigură" msgstr "Activare Căutare Sigură"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Activare filtre moderate SafeSearch pentru YouTube." msgstr "Activare filtre moderate SafeSearch pentru YouTube."
@ -294,7 +300,7 @@ msgstr "Activare filtre moderate SafeSearch pentru YouTube."
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Activare serviciu adblock." msgstr "Activare serviciu adblock."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
"Activare înregistrare detaliată de depanare în cazul unor erori de procesare." "Activare înregistrare detaliată de depanare în cazul unor erori de procesare."
@ -319,11 +325,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Activitate(ăți) existentă(e)" msgstr "Activitate(ăți) existentă(e)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "Domeniul de căutare DNS extern" msgstr "Domeniul de căutare DNS extern"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -336,11 +342,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Criterii de filtrare precum dată, domeniu sau client (opțional)" msgstr "Criterii de filtrare precum dată, domeniu sau client (opțional)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Eliberează cache-ul DNS" msgstr "Eliberează cache-ul DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Spălare memoria cache DNS înainte de procesarea adblock." msgstr "Spălare memoria cache DNS înainte de procesarea adblock."
@ -348,7 +354,7 @@ msgstr "Spălare memoria cache DNS înainte de procesarea adblock."
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Forţează DNS Local" msgstr "Forţează DNS Local"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -371,7 +377,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informare" msgstr "Informare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "Director Închisoare" msgstr "Director Închisoare"
@ -383,7 +389,15 @@ msgstr "Ultima rulare"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Ultimele Cereri DNS" msgstr "Ultimele Cereri DNS"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "Lista dispozitivelor de rețea utilizate de tcpdump." msgstr "Lista dispozitivelor de rețea utilizate de tcpdump."
@ -396,7 +410,7 @@ msgstr ""
"Alegeți „nespecificat” pentru a utiliza un interval de timp de pornire " "Alegeți „nespecificat” pentru a utiliza un interval de timp de pornire "
"clasic în loc de declanșarea rețelei." "clasic în loc de declanșarea rețelei."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -425,7 +439,7 @@ msgstr ""
"&#xa0;<b>XXL</b> (200k-) au nevoie de dispozitive cu mai mult RAM și suport " "&#xa0;<b>XXL</b> (200k-) au nevoie de dispozitive cu mai mult RAM și suport "
"Multicore, ex. x86 sau raspberry.<br /> <p>&#xa0;</p>" "Multicore, ex. x86 sau raspberry.<br /> <p>&#xa0;</p>"
#: 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -438,7 +452,7 @@ msgstr "Porturi DNS Locale"
msgid "Log View" msgid "Log View"
msgstr "Vizualizare Jurnal" msgstr "Vizualizare Jurnal"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -459,7 +473,7 @@ msgstr "Nu există încă jurnale adblock!"
msgid "Overview" msgid "Overview"
msgstr "Prezentare generală" msgstr "Prezentare generală"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Profil utilizat de „msmtp” pentru e-mailurile de notificare adblock." msgstr "Profil utilizat de „msmtp” pentru e-mailurile de notificare adblock."
@ -473,7 +487,7 @@ msgstr ""
"Interogare listă de blocări active și copii de rezervă pentru un anumit " "Interogare listă de blocări active și copii de rezervă pentru un anumit "
"domeniu." "domeniu."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
@ -481,7 +495,7 @@ msgstr ""
"Creșteți numărul de notificări pentru a primi e-mailuri dacă numărul total " "Creșteți numărul de notificări pentru a primi e-mailuri dacă numărul total "
"de blocări este mai mic sau egal cu limita dată." "de blocări este mai mic sau egal cu limita dată."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -493,7 +507,7 @@ msgstr ""
"Redirecționare toate interogările DNS din zona „lan” către procesatorul DNS " "Redirecționare toate interogările DNS din zona „lan” către procesatorul DNS "
"local, se aplică protocolului UDP și TCP." "local, se aplică protocolului UDP și TCP."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -524,35 +538,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -579,23 +597,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Salvează" msgstr "Salvează"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -607,13 +621,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -623,11 +637,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -647,23 +661,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "Suspendă" msgstr "Suspendă"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -715,7 +729,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -729,11 +743,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Intârzierea declanșării" msgstr "Intârzierea declanșării"
@ -742,7 +756,7 @@ msgstr "Intârzierea declanșării"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -757,11 +771,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -769,15 +783,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -49,7 +49,7 @@ msgstr "Добавить (под-)домен в ваш локальный чер
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Добавить (под-)домен в ваш локальный белый список." msgstr "Добавить (под-)домен в ваш локальный белый список."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "Дополнительный тюремный блоклист" msgstr "Дополнительный тюремный блоклист"
@ -57,7 +57,7 @@ msgstr "Дополнительный тюремный блоклист"
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Дополнительные настройки" msgstr "Дополнительные настройки"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "Дополнительная задержка в секундах до начала работы Adblock." msgstr "Дополнительная задержка в секундах до начала работы Adblock."
@ -77,15 +77,15 @@ msgstr "Расширенные настройки отчетов"
msgid "Answer" msgid "Answer"
msgstr "Ответ" msgstr "Ответ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Папка для резервных копий" msgstr "Папка для резервных копий"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Базовый временный каталог" msgstr "Базовый временный каталог"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -114,7 +114,7 @@ msgstr "Заблокированные домены"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Заблокированные домены" msgstr "Заблокированные домены"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Бэкап черного списка" msgstr "Бэкап черного списка"
@ -131,7 +131,7 @@ msgstr "Запросы к черному списку..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Источники черных списков" msgstr "Источники черных списков"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
#, fuzzy #, fuzzy
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
@ -151,6 +151,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Отменить" msgstr "Отменить"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Клиент" msgstr "Клиент"
@ -174,7 +180,7 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Количество" msgstr "Количество"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
@ -183,19 +189,19 @@ msgstr ""
"загрузкой или во время запуска." "загрузкой или во время запуска."
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "DNS-серверная часть" msgstr "DNS-серверная часть"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Папка DNS" msgstr "Папка DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Сброс файла DNS" msgstr "Сброс файла DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -209,7 +215,7 @@ msgstr "DNS запросы (заблокированы)"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "DNS запросов (всего)" msgstr "DNS запросов (всего)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "Таймаут перезапуска DNS" msgstr "Таймаут перезапуска DNS"
@ -217,15 +223,15 @@ msgstr "Таймаут перезапуска DNS"
msgid "Date" msgid "Date"
msgstr "Дата" msgstr "Дата"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "Отключить DNS ответы" msgstr "Отключить DNS ответы"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "Отключить перезагрузки DNS" msgstr "Отключить перезагрузки DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
@ -233,7 +239,7 @@ msgstr ""
"Отключить триггеры, запускаемые adblock, для dns backends с функциями " "Отключить триггеры, запускаемые adblock, для dns backends с функциями "
"автозагрузки/inotify." "автозагрузки/inotify."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -242,39 +248,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Домен" msgstr "Домен"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Параметры загрузки" msgstr "Параметры загрузки"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "Очередь загрузки" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Утилита для скачивания" msgstr "Утилита для скачивания"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Уведомление электронной почты" msgstr "Уведомление электронной почты"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "Счётчик e-mail уведомлений" msgstr "Счётчик e-mail уведомлений"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Профиль электронной почты" msgstr "Профиль электронной почты"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Адрес получателя электронной почты" msgstr "Адрес получателя электронной почты"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Почтовый адрес отправителя" msgstr "Почтовый адрес отправителя"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -292,7 +298,7 @@ msgstr "Редактировать Белый список"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "Включить Безопасный Поиск" msgstr "Включить Безопасный Поиск"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Включите умеренные фильтры Безопастного Поиска для youtube." msgstr "Включите умеренные фильтры Безопастного Поиска для youtube."
@ -300,7 +306,7 @@ msgstr "Включите умеренные фильтры Безопастно
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "Включить сервис AdBlock." msgstr "Включить сервис AdBlock."
#: 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
"Включите подробное ведение журнала отладки в случае каких-либо ошибок " "Включите подробное ведение журнала отладки в случае каких-либо ошибок "
@ -324,11 +330,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "Существующая работа(ы)" msgstr "Существующая работа(ы)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -341,11 +347,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "Критерии фильтрации, такие как дата, домен или клиент (необязательно)" msgstr "Критерии фильтрации, такие как дата, домен или клиент (необязательно)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Очистка кэша DNS" msgstr "Очистка кэша DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Очистите кэш DNS до обработки adblock." msgstr "Очистите кэш DNS до обработки adblock."
@ -353,7 +359,7 @@ msgstr "Очистите кэш DNS до обработки adblock."
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Локальный DNS" msgstr "Локальный DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -372,7 +378,7 @@ msgstr "Предоставить доступ к приложению LuCI AdBlo
msgid "Information" msgid "Information"
msgstr "Информация" msgstr "Информация"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "Директория Jail" msgstr "Директория Jail"
@ -384,7 +390,15 @@ msgstr "Последний запуск"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "Последние DNS запросы" msgstr "Последние DNS запросы"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "Список доступных сетевых устройств используемых tcpdump." msgstr "Список доступных сетевых устройств используемых tcpdump."
@ -394,7 +408,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -414,7 +428,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
"Список поддерживаемых и полностью предварительно настроенных утилит для " "Список поддерживаемых и полностью предварительно настроенных утилит для "
@ -429,7 +443,7 @@ msgstr "Локальные порты DNS"
msgid "Log View" msgid "Log View"
msgstr "Просмотр журнала" msgstr "Просмотр журнала"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Низкий приоритет службы" msgstr "Низкий приоритет службы"
@ -450,7 +464,7 @@ msgstr "Ещё нет журналов, связанных с adblock!"
msgid "Overview" msgid "Overview"
msgstr "Обзор" msgstr "Обзор"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -463,13 +477,13 @@ msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
"Запросить активные списки блоков и резервные копии для определенного домена." "Запросить активные списки блоков и резервные копии для определенного домена."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "Адрес получателя для уведомлений по электронной почте." msgstr "Адрес получателя для уведомлений по электронной почте."
@ -479,7 +493,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -507,35 +521,39 @@ msgstr "Обновить таймер..."
msgid "Refresh..." msgid "Refresh..."
msgstr "Обновить..." 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "Количество фрагментов отчета" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "Размер фрагментов отчета" msgstr "Размер фрагментов отчета"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "Папка для отчетов" msgstr "Папка для отчетов"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "Отчет интерфейса" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "Порты отчетов" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -562,23 +580,19 @@ msgstr "Интерфейсы запуска"
msgid "Run Utils" msgid "Run Utils"
msgstr "Запуск Утилиты" msgstr "Запуск Утилиты"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Сохранить" msgstr "Сохранить"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "E-Mails адрес отправителя для уведомления adblock ." msgstr "E-Mails адрес отправителя для уведомления adblock ."
@ -590,13 +604,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "Настройки" msgstr "Настройки"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -606,11 +620,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "Разделенный пробелами список портов используемых tcpdump." msgstr "Разделенный пробелами список портов используемых tcpdump."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -630,23 +644,23 @@ msgstr "Статус / Версия"
msgid "Suspend" msgid "Suspend"
msgstr "Приостановить" msgstr "Приостановить"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "Папка для созданного списка блокировки 'adb_list.overall'." msgstr "Папка для созданного списка блокировки 'adb_list.overall'."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -700,7 +714,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Время" msgstr "Время"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "Тайм-аут ожидания успешного перезапуска серверной части DNS." msgstr "Тайм-аут ожидания успешного перезапуска серверной части DNS."
@ -714,11 +728,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "Топ-10 статистики" msgstr "Топ-10 статистики"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Задержка запуска" msgstr "Задержка запуска"
@ -727,7 +741,7 @@ msgstr "Задержка запуска"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "Невозможно сохранить изменения: %ы" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Подробный журнал отладки" msgstr "Подробный журнал отладки"
@ -744,11 +758,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "Белый список..." msgstr "Белый список..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)"
@ -756,15 +770,15 @@ msgstr "kresd (/etc/kresd)"
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "named (/var/lib/bind)" msgstr "named (/var/lib/bind)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "raw (/tmp)" msgstr "raw (/tmp)"
#: 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)"

View file

@ -43,7 +43,7 @@ msgstr "Pridať túto (sub-) doménu medzi lokálne zakázané domény."
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "Pridať túto (sub-) doménu medzi lokálne povolené domény." 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:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "Ďalšie nastavenia" msgstr "Ďalšie nastavenia"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Dodatočné oneskorenie v sekundách pred začiatkom spracovania blokovania " "Dodatočné oneskorenie v sekundách pred začiatkom spracovania blokovania "
@ -74,15 +74,15 @@ msgstr "Pokročilé nastavenia"
msgid "Answer" msgid "Answer"
msgstr "Odpoveď" msgstr "Odpoveď"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Záložný priečinok" msgstr "Záložný priečinok"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "Základný Temp priečinok" msgstr "Základný Temp priečinok"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -109,7 +109,7 @@ msgstr "Blokovaná doména"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "Blokované domény" msgstr "Blokované domény"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "Záloha zoznamu blokovaných domén" msgstr "Záloha zoznamu blokovaných domén"
@ -125,7 +125,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Zdroje zoznamov blokovaní" msgstr "Zdroje zoznamov blokovaní"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -140,6 +140,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Zrušiť" msgstr "Zrušiť"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -158,26 +164,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Počet" msgstr "Počet"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS adresár" msgstr "DNS adresár"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Inicializácia DNS súboru" msgstr "Inicializácia DNS súboru"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -191,7 +197,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -199,21 +205,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Dátum" msgstr "Dátum"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -222,39 +228,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Doména" msgstr "Doména"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Nástroj na sťahovanie" msgstr "Nástroj na sťahovanie"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "Upozornenie e-mailom" msgstr "Upozornenie e-mailom"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adresa príjemcu e-mailu" msgstr "Adresa príjemcu e-mailu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -272,7 +278,7 @@ msgstr "Upraviť bielu listinu"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -280,7 +286,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -302,11 +308,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -316,11 +322,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Vyprázdniť medzipamäť DNS" msgstr "Vyprázdniť medzipamäť DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -328,7 +334,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -347,7 +353,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informácie" msgstr "Informácie"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -359,7 +365,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -369,7 +383,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -387,7 +401,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -400,7 +414,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -421,7 +435,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Prehľad" msgstr "Prehľad"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -433,13 +447,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -449,7 +463,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -477,35 +491,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -532,23 +550,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Uložiť" msgstr "Uložiť"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -560,13 +574,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "Nastavenia" msgstr "Nastavenia"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -576,11 +590,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -600,23 +614,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -668,7 +682,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -682,11 +696,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -695,7 +709,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -710,11 +724,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -722,15 +736,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Ytterligare trigger fördröjning i sekunder innan Adblock-bearbetningen " "Ytterligare trigger fördröjning i sekunder innan Adblock-bearbetningen "
@ -73,15 +73,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Svar" msgstr "Svar"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Säkerhetskopiera mapp" msgstr "Säkerhetskopiera mapp"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -106,7 +106,7 @@ msgstr "Blockerad domän"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -122,7 +122,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Källor för blockeringslistor" msgstr "Källor för blockeringslistor"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -137,6 +137,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Klient" msgstr "Klient"
@ -155,26 +161,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Räkna" msgstr "Räkna"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS-mapp" msgstr "DNS-mapp"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS-filåterställning" msgstr "DNS-filåterställning"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -188,7 +194,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -196,21 +202,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -219,39 +225,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Domän" msgstr "Domän"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "Ladda ner verktyget" msgstr "Ladda ner verktyget"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "E-postavisering" msgstr "E-postavisering"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-postmottagaradress" msgstr "E-postmottagaradress"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr "Redigera vitlista"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -277,7 +283,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -299,11 +305,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -313,11 +319,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "Töm DNS-cache" msgstr "Töm DNS-cache"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -325,7 +331,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "Tvinga lokal DNS" msgstr "Tvinga lokal DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -344,7 +350,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -356,7 +362,15 @@ msgstr "Kördes senast"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -366,7 +380,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -384,7 +398,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "Lista över stödda och helt förkonfigurerade nedladdningsverktyg." msgstr "Lista över stödda och helt förkonfigurerade nedladdningsverktyg."
@ -397,7 +411,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "Lågprioriterad tjänst" msgstr "Lågprioriterad tjänst"
@ -418,7 +432,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Översikt" msgstr "Översikt"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -430,13 +444,13 @@ msgstr "Fråga"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -446,7 +460,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -474,35 +488,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -529,23 +547,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Spara" msgstr "Spara"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -557,13 +571,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -573,11 +587,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -597,23 +611,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "Stäng av" msgstr "Stäng av"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -665,7 +679,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -679,11 +693,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -692,7 +706,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -707,11 +721,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -719,15 +733,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -34,7 +34,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -42,7 +42,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -62,15 +62,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -95,7 +95,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -111,7 +111,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -126,6 +126,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "" msgstr ""
@ -144,26 +150,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -177,7 +183,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -185,21 +191,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -208,39 +214,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -258,7 +264,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -266,7 +272,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -288,11 +294,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -302,11 +308,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -314,7 +320,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -333,7 +339,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -345,7 +351,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -355,7 +369,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -373,7 +387,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -386,7 +400,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -407,7 +421,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -419,13 +433,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -435,7 +449,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -463,35 +477,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -518,23 +536,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -546,13 +560,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -562,11 +576,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -586,23 +600,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -654,7 +668,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -668,11 +682,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,7 +695,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -696,11 +710,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -708,14 +722,14 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
#, fuzzy #, fuzzy
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "Reklam engelleme işlemi başlamadan önceki ilave tetik gecikmesi." msgstr "Reklam engelleme işlemi başlamadan önceki ilave tetik gecikmesi."
@ -72,15 +72,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Cevap" msgstr "Cevap"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Yedek Dizini" msgstr "Yedek Dizini"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -105,7 +105,7 @@ msgstr "Engellenmiş Alan Adı"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -121,7 +121,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Engelleme Listesi Kaynakları" msgstr "Engelleme Listesi Kaynakları"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -136,6 +136,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "İstemci" msgstr "İstemci"
@ -155,26 +161,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Sayım" msgstr "Sayım"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -188,7 +194,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -196,21 +202,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -219,39 +225,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -277,7 +283,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -299,11 +305,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -313,11 +319,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -325,7 +331,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -344,7 +350,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -356,7 +362,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -366,7 +380,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -384,7 +398,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -397,7 +411,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -418,7 +432,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -430,13 +444,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -446,7 +460,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -474,35 +488,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -529,23 +547,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -557,13 +571,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -573,11 +587,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -597,23 +611,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -665,7 +679,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -679,11 +693,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -692,7 +706,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -707,11 +721,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -719,15 +733,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -44,7 +44,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -52,7 +52,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
@ -72,15 +72,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -105,7 +105,7 @@ msgstr ""
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -121,7 +121,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -136,6 +136,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Скасувати" msgstr "Скасувати"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Клієнт" msgstr "Клієнт"
@ -154,26 +160,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "" 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -187,7 +193,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -195,21 +201,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Дата" msgstr "Дата"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -218,39 +224,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "Домен" msgstr "Домен"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -268,7 +274,7 @@ msgstr "Редагувати білий список"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -276,7 +282,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -298,11 +304,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -312,11 +318,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -324,7 +330,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -343,7 +349,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Інформація" msgstr "Інформація"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -355,7 +361,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -365,7 +379,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -383,7 +397,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -396,7 +410,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -417,7 +431,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Огляд" msgstr "Огляд"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -429,13 +443,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -445,7 +459,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -473,35 +487,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -528,23 +546,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "Зберегти" msgstr "Зберегти"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -556,13 +570,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -572,11 +586,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -596,23 +610,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -664,7 +678,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -678,11 +692,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -691,7 +705,7 @@ msgstr ""
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -706,11 +720,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -718,15 +732,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -43,7 +43,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "" msgstr ""
"Kích hoạt độ trễ trong vài giây trước khi bắt đầu tiến trình chặn quảng cáo." "Kích hoạt độ trễ trong vài giây trước khi bắt đầu tiến trình chặn quảng cáo."
@ -72,15 +72,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "Phản hồi" msgstr "Phản hồi"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Thư mục sao lưu" msgstr "Thư mục sao lưu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -105,7 +105,7 @@ msgstr "Tên miền bị chặn"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -121,7 +121,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "Bộ lọc" msgstr "Bộ lọc"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -136,6 +136,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "Khách hàng" msgstr "Khách hàng"
@ -154,27 +160,27 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "Bộ đếm" msgstr "Bộ đếm"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
#, fuzzy #, fuzzy
msgid "DNS Directory" msgid "DNS Directory"
msgstr "Thư mục DNS" msgstr "Thư mục DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "Đặt lại tệp DNS" msgstr "Đặt lại tệp DNS"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -188,7 +194,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -196,21 +202,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Ngày" msgstr "Ngày"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -219,39 +225,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -269,7 +275,7 @@ msgstr ""
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -277,7 +283,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -299,11 +305,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -313,11 +319,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -325,7 +331,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "" 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -344,7 +350,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -356,7 +362,15 @@ msgstr ""
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -366,7 +380,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -384,7 +398,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "" msgstr ""
@ -397,7 +411,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "" msgstr ""
@ -418,7 +432,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -430,13 +444,13 @@ msgstr ""
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -446,7 +460,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -474,35 +488,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -529,23 +547,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -557,13 +571,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -573,11 +587,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -597,23 +611,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -665,7 +679,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "Thời gian" msgstr "Thời gian"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -679,11 +693,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Kích hoạt độ trễ" msgstr "Kích hoạt độ trễ"
@ -692,7 +706,7 @@ msgstr "Kích hoạt độ trễ"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
#, fuzzy #, fuzzy
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Nhật ký gỡ lỗi khởi động" msgstr "Nhật ký gỡ lỗi khởi động"
@ -708,11 +722,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -720,15 +734,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -50,7 +50,7 @@ msgstr "添加此域名到本地黑名单"
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "添加此域名到本地白名单" msgstr "添加此域名到本地白名单"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "额外的封锁禁闭名单" msgstr "额外的封锁禁闭名单"
@ -58,7 +58,7 @@ msgstr "额外的封锁禁闭名单"
msgid "Additional Settings" msgid "Additional Settings"
msgstr "附加设置" msgstr "附加设置"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "事件触发启动前的延时(秒)。" msgstr "事件触发启动前的延时(秒)。"
@ -78,15 +78,15 @@ msgstr "高级报告设置"
msgid "Answer" msgid "Answer"
msgstr "回答" msgstr "回答"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "备份目录" msgstr "备份目录"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "基础临时目录" msgstr "基础临时目录"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -111,7 +111,7 @@ msgstr "已拦截的域名"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "拦截域名" msgstr "拦截域名"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "黑名单列表的备份" msgstr "黑名单列表的备份"
@ -127,14 +127,14 @@ msgstr "黑名单查询..."
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "拦截列表来源" msgstr "拦截列表来源"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
"blocklist e.g. for guest wifi or kidsafe configurations." "blocklist e.g. for guest wifi or kidsafe configurations."
msgstr "" msgstr ""
"构建一个附加的DNS阻止列表以阻止对除白名单中列出的所有域之外的所有域的访问。请注意您可以使用此限制性阻止列表例如用于访客wifi或kidsafe配" "构建一个附加的DNS阻止列表以阻止对除白名单中列出的所有域之外的所有域的访问。"
"置。" "请注意您可以使用此限制性阻止列表例如用于访客wifi或kidsafe配置。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
@ -144,6 +144,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "客户端 Client" msgstr "客户端 Client"
@ -155,9 +161,9 @@ msgid ""
"master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer " "master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer "
"noopener\" >check the online documentation</a>" "noopener\" >check the online documentation</a>"
msgstr "" msgstr ""
"配置adblock软件包以使用DNS阻止广告/滥用域。有关更多信息,请<a href=\"https://github.com/openwrt/" "配置adblock软件包以使用DNS阻止广告/滥用域。有关更多信息,请<a href=\"https://"
"packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" rel=\"" "github.com/openwrt/packages/blob/master/net/adblock/files/README.md\" target="
"noreferrer noopener\">查看在线文档</a>" "\"_blank\" rel=\"noreferrer noopener\">查看在线文档</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
@ -165,26 +171,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "计数" msgstr "计数"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "创建压缩的阻止列表备份,将在下载错误或启动期间使用它们。" msgstr "创建压缩的阻止列表备份,将在下载错误或启动期间使用它们。"
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "DNS后端" msgstr "DNS后端"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS 目录" msgstr "DNS 目录"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS 文件重置" msgstr "DNS 文件重置"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -198,7 +204,7 @@ msgstr "DNS请求已阻止"
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "DNS请求总计" msgstr "DNS请求总计"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "DNS重新启动超时" msgstr "DNS重新启动超时"
@ -206,21 +212,21 @@ msgstr "DNS重新启动超时"
msgid "Date" msgid "Date"
msgstr "日期" msgstr "日期"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "禁止 DNS 允许" msgstr "禁止 DNS 允许"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "禁用DNS重新启动" msgstr "禁用DNS重新启动"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "禁用具有自动加载/ inotify功能的dns后端的adblock触发的重启。" msgstr "禁用具有自动加载/ inotify功能的dns后端的adblock触发的重启。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "禁止选择性DNS白名单(RPZ通过)." msgstr "禁止选择性DNS白名单(RPZ通过)."
@ -229,39 +235,39 @@ msgstr "禁止选择性DNS白名单(RPZ通过)."
msgid "Domain" msgid "Domain"
msgstr "域名" msgstr "域名"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "下载参数" msgstr "下载参数"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "下载队列" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "下载工具" msgstr "下载工具"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "E-Mail 通知" msgstr "E-Mail 通知"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "电子邮件通知计数" msgstr "电子邮件通知计数"
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "电子邮件资料" msgstr "电子邮件资料"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-Mail 收件人地址" msgstr "E-Mail 收件人地址"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "电子邮件发件人地址" msgstr "电子邮件发件人地址"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "电子邮件主题" msgstr "电子邮件主题"
@ -279,7 +285,7 @@ msgstr "编辑白名单"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "启用安全搜索" msgstr "启用安全搜索"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "为YouTube启用适度的安全搜索过滤器." msgstr "为YouTube启用适度的安全搜索过滤器."
@ -287,7 +293,7 @@ msgstr "为YouTube启用适度的安全搜索过滤器."
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "启用广告屏蔽服务." 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "在出现任何处理错误的情况下启用详细调试日志记录." msgstr "在出现任何处理错误的情况下启用详细调试日志记录."
@ -309,25 +315,27 @@ msgstr "强制执行GoogleBingDuckduckgoYandexyoutube和Google的Saf
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "现有的工作(s)" msgstr "现有的工作(s)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "外部DNS查找域" msgstr "外部DNS查找域"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
msgstr "外部域用于检查DNS后端是否成功重启。请注意要禁用此检查请将此选项设置为“ false”。" msgstr ""
"外部域用于检查DNS后端是否成功重启。请注意要禁用此检查请将此选项设置为“ "
"false”。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "过滤条件,例如日期,域或客户(可选)" msgstr "过滤条件,例如日期,域或客户(可选)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "清空 DNS 缓存" msgstr "清空 DNS 缓存"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "还要在处理adblock之前刷新DNS缓存。" msgstr "还要在处理adblock之前刷新DNS缓存。"
@ -335,14 +343,14 @@ msgstr "还要在处理adblock之前刷新DNS缓存。"
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "强制本地 DNS" msgstr "强制本地 DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
"installation and a full adblock service restart to take effect." "installation and a full adblock service restart to take effect."
msgstr "" msgstr ""
"通过tcpdump收集与DNS相关的网络流量并按需提供DNS报告。请注意这需要额外的“ tcpdump-" "通过tcpdump收集与DNS相关的网络流量并按需提供DNS报告。请注意这需要额外的“ "
"mini”软件包安装并重新启动完整的adblock服务才能生效。" "tcpdump-mini”软件包安装并重新启动完整的adblock服务才能生效。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268
msgid "General Settings" msgid "General Settings"
@ -356,7 +364,7 @@ msgstr "授予对LuCI应用程序adblock的访问权限"
msgid "Information" msgid "Information"
msgstr "信息" msgstr "信息"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "黑名单目录" msgstr "黑名单目录"
@ -368,7 +376,15 @@ msgstr "最后运行"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "最新的DNS请求" msgstr "最新的DNS请求"
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "tcpdump使用的可用网络设备列表." msgstr "tcpdump使用的可用网络设备列表."
@ -376,13 +392,16 @@ msgstr "tcpdump使用的可用网络设备列表."
msgid "" msgid ""
"List of available network interfaces to trigger the adblock start. Choose " "List of available network interfaces to trigger the adblock start. Choose "
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "触发adblock启动的可用网络接口列表.选择“未指定”以使用传统的启动超时而不是网络触发器." msgstr ""
"触发adblock启动的可用网络接口列表.选择“未指定”以使用传统的启动超时而不是网络"
"触发器."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
msgstr "支持的DNS后端列表及其默认列表目录.要覆盖默认路径,请使用“ DNS目录”选项." msgstr ""
"支持的DNS后端列表及其默认列表目录.要覆盖默认路径,请使用“ DNS目录”选项."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273
msgid "" msgid ""
@ -395,13 +414,15 @@ msgid ""
"devices,<br /> &#8226;&#xa0;<b>XXL</b> (200k-) needs more RAM and Multicore " "devices,<br /> &#8226;&#xa0;<b>XXL</b> (200k-) needs more RAM and Multicore "
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" msgstr ""
"受支持且已完全预先配置的adblock源列表已预先选择了已激活的源。<br /> <b> <em>为避免OOM错误请不要选择太多列表</ em> " "受支持且已完全预先配置的adblock源列表已预先选择了已激活的源。<br /> <b> "
"</ b> <br />列出各个域范围的大小信息,如下所示:<br />8226;xa0; <b> S </ b>-10k<b> M </ " "<em>为避免OOM错误请不要选择太多列表</ em> </ b> <br />列出各个域范围的大"
"b>10k -30k和<b> L </ b>30k-80k适用于128 MByte设备<br />8226;xa0; <b> XL </" "小信息,如下所示:<br />8226;xa0; <b> S </ b>-10k<b> M </ "
" b>80k-200k应适用适用于256-512 MB设备<br />8226;xa0; <b> XXL </ " "b>10k -30k和<b> L </ b>30k-80k适用于128 MByte设备<br />8226;"
"b>200k-需要更多的RAM和多核支持例如x86或树莓派设备。<br /> <p>xa0; </ p>" "xa0; <b> XL </ b>80k-200k应适用适用于256-512 MB设备<br />8226;"
"xa0; <b> XXL </ b>200k-需要更多的RAM和多核支持例如x86或树莓派设备。"
"<br /> <p>xa0; </ p>"
#: 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "支持和完全预配置的下载工具列表。" msgstr "支持和完全预配置的下载工具列表。"
@ -414,7 +435,7 @@ msgstr "本地DNS端口"
msgid "Log View" msgid "Log View"
msgstr "日志视图" msgstr "日志视图"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "低优先级服务" msgstr "低优先级服务"
@ -435,7 +456,7 @@ msgstr "尚无与adblock相关的日志"
msgid "Overview" msgid "Overview"
msgstr "概览" msgstr "概览"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "'msmtp' 用于adblock通知电子邮件的配置文件。" msgstr "'msmtp' 用于adblock通知电子邮件的配置文件。"
@ -447,13 +468,14 @@ msgstr "查询"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "查询特定域的活动阻止列表和备份." msgstr "查询特定域的活动阻止列表和备份."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "如果总体阻止列表总数小于或等于给定的限制,请提高通知数量,以获取电子邮件." msgstr ""
"如果总体阻止列表总数小于或等于给定的限制,请提高通知数量,以获取电子邮件."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "adblock 通知 E-Mail 的收件人地址。" msgstr "adblock 通知 E-Mail 的收件人地址。"
@ -461,14 +483,17 @@ msgstr "adblock 通知 E-Mail 的收件人地址。"
msgid "" msgid ""
"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies " "Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies "
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "将所有 DNS 查询从“lan”区域重定向到本地解析器包括 udp、tcp 协议的端口 ." msgstr ""
"将所有 DNS 查询从“lan”区域重定向到本地解析器包括 udp、tcp 协议的端口 ."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
"service restart to take effect." "service restart to take effect."
msgstr "降低adblock后台处理的优先级以减少系统资源.请注意此更改要求重新启动完整的adblock服务才能生效." msgstr ""
"降低adblock后台处理的优先级以减少系统资源.请注意:此更改要求重新启动完整的"
"adblock服务才能生效."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
@ -491,35 +516,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "报告区块计数" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "报告区块大小" msgstr "报告区块大小"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "报告目录" msgstr "报告目录"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "报告接口" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -546,23 +575,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "保存" msgstr "保存"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -574,13 +599,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "设置" msgstr "设置"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -590,11 +615,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -614,23 +639,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "暂停" msgstr "暂停"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "生成拦截列表“adb_list.overall”的目标目录。" msgstr "生成拦截列表“adb_list.overall”的目标目录。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -682,7 +707,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "时间" msgstr "时间"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -696,11 +721,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "触发延迟" msgstr "触发延迟"
@ -709,7 +734,7 @@ msgstr "触发延迟"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "详细的调试记录" msgstr "详细的调试记录"
@ -724,11 +749,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -736,15 +761,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""

View file

@ -49,7 +49,7 @@ msgstr ""
msgid "Add this (sub-)domain to your local whitelist." msgid "Add this (sub-)domain to your local whitelist."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Additional Jail Blocklist" msgid "Additional Jail Blocklist"
msgstr "" msgstr ""
@ -57,7 +57,7 @@ msgstr ""
msgid "Additional Settings" msgid "Additional Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins." msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "廣告塊處理開始前數秒內的額外觸發延遲。" msgstr "廣告塊處理開始前數秒內的額外觸發延遲。"
@ -77,15 +77,15 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "回覆" msgstr "回覆"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "Backup Directory" msgid "Backup Directory"
msgstr "備份目錄" msgstr "備份目錄"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "Base Temp Directory" msgid "Base Temp Directory"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:344 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353
msgid "" msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. " "Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc." "downloading, sorting, merging etc."
@ -110,7 +110,7 @@ msgstr "封锁网域"
msgid "Blocked Domains" msgid "Blocked Domains"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Blocklist Backup" msgid "Blocklist Backup"
msgstr "" msgstr ""
@ -126,7 +126,7 @@ msgstr ""
msgid "Blocklist Sources" msgid "Blocklist Sources"
msgstr "拉黑檔案清單" msgstr "拉黑檔案清單"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "" msgid ""
"Builds an additional DNS blocklist to block access to all domains except " "Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive " "those listed in the whitelist. Please note: You can use this restrictive "
@ -141,6 +141,12 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p>&#xa0;</p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client" msgid "Client"
msgstr "顧客" msgstr "顧客"
@ -159,26 +165,26 @@ msgstr ""
msgid "Count" msgid "Count"
msgstr "次數" msgstr "次數"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "" msgid ""
"Create compressed blocklist backups, they will be used in case of download " "Create compressed blocklist backups, they will be used in case of download "
"errors or during startup." "errors or during startup."
msgstr "" msgstr ""
#: 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:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "DNS Backend" msgid "DNS Backend"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS Directory" msgid "DNS Directory"
msgstr "DNS 目錄" msgstr "DNS 目錄"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "DNS File Reset" msgid "DNS File Reset"
msgstr "DNS檔案重置" msgstr "DNS檔案重置"
#: 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:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8 #: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27 #: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report" msgid "DNS Report"
@ -192,7 +198,7 @@ msgstr ""
msgid "DNS Requests (total)" msgid "DNS Requests (total)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "DNS Restart Timeout" msgid "DNS Restart Timeout"
msgstr "" msgstr ""
@ -200,21 +206,21 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "日期" msgstr "日期"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable DNS Allow" msgid "Disable DNS Allow"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "Disable DNS Restarts" msgid "Disable DNS Restarts"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
msgid "" msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify " "Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions." "functions."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Disable selective DNS whitelisting (RPZ pass through)." msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "" msgstr ""
@ -223,39 +229,39 @@ msgstr ""
msgid "Domain" msgid "Domain"
msgstr "網域" msgstr "網域"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue" msgid "Download Queue"
msgstr "" 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:368
msgid "Download Utility" msgid "Download Utility"
msgstr "下載實用程式" msgstr "下載實用程式"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification" msgid "E-Mail Notification"
msgstr "電子郵件通知" msgstr "電子郵件通知"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "E-Mail Notification Count" msgid "E-Mail Notification Count"
msgstr "" msgstr ""
#: 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:465
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,7 +279,7 @@ msgstr "編輯白名單"
msgid "Enable SafeSearch" msgid "Enable SafeSearch"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube." msgid "Enable moderate SafeSearch filters for youtube."
msgstr "" msgstr ""
@ -281,7 +287,7 @@ msgstr ""
msgid "Enable the adblock service." msgid "Enable the adblock service."
msgstr "" 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:333
msgid "Enable verbose debug logging in case of any processing errors." msgid "Enable verbose debug logging in case of any processing errors."
msgstr "" msgstr ""
@ -303,11 +309,11 @@ msgstr ""
msgid "Existing job(s)" msgid "Existing job(s)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "External DNS Lookup Domain" msgid "External DNS Lookup Domain"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "" msgid ""
"External domain to check for a successful DNS backend restart. Please note: " "External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'." "To disable this check set this option to 'false'."
@ -317,11 +323,11 @@ msgstr ""
msgid "Filter criteria like date, domain or client (optional)" msgid "Filter criteria like date, domain or client (optional)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush DNS Cache" msgid "Flush DNS Cache"
msgstr "清空 DNS 快取" msgstr "清空 DNS 快取"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:408
msgid "Flush the DNS Cache before adblock processing as well." msgid "Flush the DNS Cache before adblock processing as well."
msgstr "" msgstr ""
@ -329,7 +335,7 @@ msgstr ""
msgid "Force Local DNS" msgid "Force Local DNS"
msgstr "強制本地 DNS" msgstr "強制本地 DNS"
#: 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:317
msgid "" msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on " "Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package " "demand. Please note: this needs additional 'tcpdump-mini' package "
@ -348,7 +354,7 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Jail Directory" msgid "Jail Directory"
msgstr "" msgstr ""
@ -360,7 +366,15 @@ msgstr "最後執行"
msgid "Latest DNS Requests" msgid "Latest DNS Requests"
msgstr "" msgstr ""
#: 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:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:430
msgid "List of available network devices used by tcpdump." msgid "List of available network devices used by tcpdump."
msgstr "" msgstr ""
@ -370,7 +384,7 @@ msgid ""
"'unspecified' to use a classic startup timeout instead of a network trigger." "'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "" msgid ""
"List of supported DNS backends with their default list directory. To " "List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option." "overwrite the default path use the 'DNS Directory' option."
@ -388,7 +402,7 @@ msgid ""
"support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>" "support, e.g. x86 or raspberry devices.<br /> <p>&#xa0;</p>"
msgstr "" 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:368
msgid "List of supported and fully pre-configured download utilities." msgid "List of supported and fully pre-configured download utilities."
msgstr "支援和完全預配置的下載工具列表。" msgstr "支援和完全預配置的下載工具列表。"
@ -401,7 +415,7 @@ msgstr ""
msgid "Log View" msgid "Log View"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service" msgid "Low Priority Service"
msgstr "低優先權服務" msgstr "低優先權服務"
@ -422,7 +436,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概覽" msgstr "概覽"
#: 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:465
msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "" msgstr ""
@ -434,13 +448,13 @@ msgstr "查詢"
msgid "Query active blocklists and backups for a specific domain." msgid "Query active blocklists and backups for a specific domain."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:469
msgid "" msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count " "Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit." "is less or equal to the given limit."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:316 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails." msgid "Receiver address for adblock notification e-mails."
msgstr "" msgstr ""
@ -450,7 +464,7 @@ msgid ""
"to UDP and TCP protocol." "to UDP and TCP protocol."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "" msgid ""
"Reduce the priority of the adblock background processing to take fewer " "Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock " "resources from the system. Please note: This change requires a full adblock "
@ -478,35 +492,39 @@ msgstr ""
msgid "Refresh..." msgid "Refresh..."
msgstr "" 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:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "Report Chunk Count" msgid "Report Chunk Count"
msgstr "報告區塊計數" 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:445
msgid "Report Chunk Size" msgid "Report Chunk Size"
msgstr "報告區塊大小" msgstr "報告區塊大小"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "Report Directory" msgid "Report Directory"
msgstr "報告目錄" msgstr "報告目錄"
#: 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:430
msgid "Report Interface" msgid "Report Interface"
msgstr "報告介面" 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:450
msgid "Report Ports" msgid "Report Ports"
msgstr "" 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:440
msgid "Report chunk count used by tcpdump." msgid "Report chunk count used by tcpdump."
msgstr "" 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:445
msgid "Report chunk size used by tcpdump in MByte." msgid "Report chunk size used by tcpdump in MByte."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
msgid "" msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. " "Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the " "Please note: This option starts a small ubus/adblock monitor in the "
@ -533,23 +551,19 @@ msgstr ""
msgid "Run Utils" msgid "Run Utils"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "SafeSearch Moderate"
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:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 #: 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:83 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save" msgid "Save"
msgstr "儲存" msgstr "儲存"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "" msgid ""
"Send adblock related notification e-mails. Please note: this needs " "Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation." "additional 'msmtp' package installation."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457
msgid "Sender address for adblock notification E-Mails." msgid "Sender address for adblock notification E-Mails."
msgstr "" msgstr ""
@ -561,13 +575,13 @@ msgstr ""
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "" msgid ""
"Size of the download queue for download processing (incl. sorting, merging " "Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel." "etc.) in parallel."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:477
msgid "Sources (Size, Focus)" msgid "Sources (Size, Focus)"
msgstr "" msgstr ""
@ -577,11 +591,11 @@ msgid ""
"locally." "locally."
msgstr "" 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:450
msgid "Space separated list of ports used by tcpdump." msgid "Space separated list of ports used by tcpdump."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:366 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
msgid "Special config options for the selected download utility." msgid "Special config options for the selected download utility."
msgstr "" msgstr ""
@ -601,23 +615,23 @@ msgstr ""
msgid "Suspend" msgid "Suspend"
msgstr "暫停" msgstr "暫停"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435
msgid "" msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use " "Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:353 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
msgid "" msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use " "Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk." "preferably an usb stick or another local disk."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "Target directory for the generated blocklist 'adb_list.overall'." msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "生成攔截列表“adb_list.overall”的目標目錄。" msgstr "生成攔截列表“adb_list.overall”的目標目錄。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr "" msgstr ""
@ -669,7 +683,7 @@ msgstr ""
msgid "Time" msgid "Time"
msgstr "時間" msgstr "時間"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "Timeout to wait for a successful DNS backend restart." msgid "Timeout to wait for a successful DNS backend restart."
msgstr "" msgstr ""
@ -683,11 +697,11 @@ msgstr ""
msgid "Top 10 Statistics" msgid "Top 10 Statistics"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
msgid "Topic for adblock notification E-Mails." msgid "Topic for adblock notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:332 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "觸發延遲" msgstr "觸發延遲"
@ -696,7 +710,7 @@ msgstr "觸發延遲"
msgid "Unable to save changes: %s" msgid "Unable to save changes: %s"
msgstr "" 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:333
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "囉嗦除錯紀錄" msgstr "囉嗦除錯紀錄"
@ -711,11 +725,11 @@ msgstr ""
msgid "Whitelist..." msgid "Whitelist..."
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "dnsmasq (/tmp/dnsmasq.d)" msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "kresd (/etc/kresd)" msgid "kresd (/etc/kresd)"
msgstr "" msgstr ""
@ -723,15 +737,15 @@ msgstr ""
msgid "max. result set size" msgid "max. result set size"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "named (/var/lib/bind)" msgid "named (/var/lib/bind)"
msgstr "" msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "raw (/tmp)" msgid "raw (/tmp)"
msgstr "" 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:384
msgid "unbound (/var/lib/unbound)" msgid "unbound (/var/lib/unbound)"
msgstr "" msgstr ""