diff options
Diffstat (limited to 'applications/luci-app-adblock')
16 files changed, 1112 insertions, 186 deletions
diff --git a/applications/luci-app-adblock/Makefile b/applications/luci-app-adblock/Makefile index 8efe2d6048..614faf0e83 100644 --- a/applications/luci-app-adblock/Makefile +++ b/applications/luci-app-adblock/Makefile @@ -1,7 +1,6 @@ -# Copyright (C) 2016 Openwrt.org -# -# This is free software, licensed under the Apache License, Version 2.0 . -# +# Copyright 2016 Hannu Nyman +# Copyright 2017 Dirk Brenken (dev@brenken.org) +# This is free software, licensed under the Apache License, Version 2.0 include $(TOPDIR)/rules.mk @@ -11,4 +10,4 @@ LUCI_PKGARCH:=all include ../../luci.mk -# call BuildPackage - OpenWrt buildroot signature +# call BuildPackage - OpenWrt buildroot signature
\ No newline at end of file diff --git a/applications/luci-app-adblock/luasrc/controller/adblock.lua b/applications/luci-app-adblock/luasrc/controller/adblock.lua index d8b471814f..bcb2976033 100644 --- a/applications/luci-app-adblock/luasrc/controller/adblock.lua +++ b/applications/luci-app-adblock/luasrc/controller/adblock.lua @@ -1,12 +1,53 @@ --- Copyright 2016 Openwrt.org --- Licensed to the public under the Apache License 2.0. +-- Copyright 2016 Hannu Nyman +-- Copyright 2017 Dirk Brenken (dev@brenken.org) +-- This is free software, licensed under the Apache License, Version 2.0 module("luci.controller.adblock", package.seeall) +local fs = require("nixio.fs") +local util = require("luci.util") +local template = require("luci.template") +local i18n = require("luci.i18n") + function index() if not nixio.fs.access("/etc/config/adblock") then return end + entry({"admin", "services", "adblock"}, firstchild(), _("Adblock"), 30).dependent = false + entry({"admin", "services", "adblock", "tab_from_cbi"}, cbi("adblock/overview_tab"), _("Overview"), 10).leaf = true + entry({"admin", "services", "adblock", "logfile"}, call("logread"), _("View Logfile"), 20).leaf = true + entry({"admin", "services", "adblock", "advanced"}, firstchild(), _("Advanced"), 100) + entry({"admin", "services", "adblock", "advanced", "blacklist"}, cbi("adblock/blacklist_tab"), _("Edit Blacklist"), 110).leaf = true + entry({"admin", "services", "adblock", "advanced", "whitelist"}, cbi("adblock/whitelist_tab"), _("Edit Whitelist"), 120).leaf = true + entry({"admin", "services", "adblock", "advanced", "configuration"}, cbi("adblock/configuration_tab"), _("Edit Configuration"), 130).leaf = true + entry({"admin", "services", "adblock", "advanced", "query"}, call("query"), _("Query domains"), 140).leaf = true + entry({"admin", "services", "adblock", "advanced", "result"}, call("queryData"), nil, 150).leaf = true +end + +function logread() + local logfile = util.trim(util.exec("logread -e 'adblock'")) + template.render("adblock/logread", {title = i18n.translate("Adblock Logfile"), content = logfile}) +end - entry({"admin", "services", "adblock"}, cbi("adblock"), _("Adblock"), 40) +function query() + template.render("adblock/query", {title = i18n.translate("Adblock Domain Query")}) +end + +function queryData(domain) + if domain and domain:match("^[a-zA-Z0-9%-%._]+$") then + luci.http.prepare_content("text/plain") + local cmd = "/etc/init.d/adblock query %q 2>&1" + local util = io.popen(cmd % domain) + if util then + while true do + local line = util:read("*l") + if not line then + break + end + luci.http.write(line) + luci.http.write("\n") + end + util:close() + end + end end diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock.lua deleted file mode 100644 index 0a4a4cdd2f..0000000000 --- a/applications/luci-app-adblock/luasrc/model/cbi/adblock.lua +++ /dev/null @@ -1,63 +0,0 @@ --- Copyright 2016 Hannu Nyman --- Licensed to the public under the Apache License 2.0. - -m = Map("adblock", translate("Adblock"), - translate("Configuration of the adblock package to block ad/abuse domains by using DNS.")) - --- General options - -s = m:section(NamedSection, "global", "adblock", translate("Global options")) - -o1 = s:option(Flag, "adb_enabled", translate("Enable adblock")) -o1.rmempty = false -o1.default = 0 - -o3 = s:option(Value, "adb_whitelist", translate("Whitelist file"), - translate("File with whitelisted hosts/domains that are allowed despite being on a blocklist.")) -o3.rmempty = false -o3.datatype = "file" - --- Blocklist options - -bl = m:section(TypedSection, "source", translate("Blocklist sources"), - translate("Available blocklist sources (") - .. [[<a href="https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md" target="_blank">]] - .. translate("see list details") - .. [[</a>]] - .. translate("). Note that list URLs and Shallalist category selections are not configurable via Luci.")) -bl.template = "cbi/tblsection" - -name = bl:option(Flag, "enabled", translate("Enabled")) -name.rmempty = false - -des = bl:option(DummyValue, "adb_src_desc", translate("Description")) - --- Additional options - -s2 = m:section(NamedSection, "global", "adblock", translate("Backup options")) - -o4 = s2:option(Flag, "adb_backup", translate("Enable blocklist backup")) -o4.rmempty = false -o4.default = 0 - -o5 = s2:option(Value, "adb_backupdir", translate("Backup directory")) -o5.rmempty = false -o5.datatype = "directory" - --- Extra options - -e = m:section(NamedSection, "global", "adblock", translate("Extra options"), - translate("Options for further tweaking in case the defaults are not suitable for you.")) - -a = e:option(Flag, "adb_debug", translate("Enable verbose debug logging")) -a.default = a.disabled -a.rmempty = false - -a = e:option(Value, "adb_iface", translate("Restrict reload trigger to certain interface(s)"), - translate("Space separated list of wan interfaces that trigger reload action. " .. - "To disable reload trigger set it to 'false'. Default: empty")) -a.datatype = "network" -a.rmempty = true - -return m - diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua new file mode 100644 index 0000000000..efe40e09e5 --- /dev/null +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua @@ -0,0 +1,39 @@ +-- Copyright 2016 Hannu Nyman +-- Copyright 2017 Dirk Brenken (dev@brenken.org) +-- This is free software, licensed under the Apache License, Version 2.0 + +local fs = require("nixio.fs") +local util = require("luci.util") +local uci = require("uci") +local adbinput = uci.get("adblock", "blacklist", "adb_src") + +if not nixio.fs.access(adbinput) then + m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) + return m +end + +m = SimpleForm("input", nil) + m:append(Template("adblock/config_css")) + +s = m:section(SimpleSection, nil, + translatef("This form allows you to modify the content of the adblock blacklist (%s).<br />", adbinput) + .. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not.")) + +f = s:option(TextValue, "data") + f.rmempty = true + f.datatype = "string" + f.rows = 20 + + function f.cfgvalue() + return nixio.fs.readfile(adbinput) or "" + end + + function f.write(self, section, data) + return nixio.fs.writefile(adbinput, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") + end + + function s.handle(self, state, data) + return true + end + +return m diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/configuration_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/configuration_tab.lua new file mode 100644 index 0000000000..035b99e5e3 --- /dev/null +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/configuration_tab.lua @@ -0,0 +1,36 @@ +-- Copyright 2016 Hannu Nyman +-- Copyright 2017 Dirk Brenken (dev@brenken.org) +-- This is free software, licensed under the Apache License, Version 2.0 + +local fs = require("nixio.fs") +local util = require("luci.util") +local adbinput = "/etc/config/adblock" + +if not nixio.fs.access(adbinput) then + m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) + return m +end + +m = SimpleForm("input", nil) + m:append(Template("adblock/config_css")) + +s = m:section(SimpleSection, nil, +translate("This form allows you to modify the content of the main adblock configuration file (/etc/config/adblock).")) + +f = s:option(TextValue, "data") + f.rmempty = true + f.rows = 20 + + function f.cfgvalue() + return nixio.fs.readfile(adbinput) or "" + end + + function f.write(self, section, data) + return nixio.fs.writefile(adbinput, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") + end + + function s.handle(self, state, data) + return true + end + +return m diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua new file mode 100644 index 0000000000..b8318fe994 --- /dev/null +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua @@ -0,0 +1,128 @@ +-- Copyright 2016 Hannu Nyman +-- Copyright 2017 Dirk Brenken (dev@brenken.org) +-- This is free software, licensed under the Apache License, Version 2.0 + +local sys = require("luci.sys") +local util = require("luci.util") +local data = util.ubus("service", "get_data", "name", "adblock") or { } +local dnsFile1 = sys.exec("find '/tmp/dnsmasq.d' -maxdepth 1 -type f -name 'adb_list*' -print 2>/dev/null") +local dnsFile2 = sys.exec("find '/var/lib/unbound' -maxdepth 1 -type f -name 'adb_list*' -print 2>/dev/null") + +m = Map("adblock", translate("Adblock"), + translate("Configuration of the adblock package to block ad/abuse domains by using DNS. ") + .. translate("For further information ") + .. [[<a href="https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md" target="_blank">]] + .. translate("see online documentation") + .. [[</a>]] + .. translate(".")) + +-- Main adblock options + +s = m:section(NamedSection, "global", "adblock") + +o1 = s:option(Flag, "adb_enabled", translate("Enable adblock")) +o1.rmempty = false +o1.default = 0 + +btn = s:option(Button, "", translate("Suspend / Resume adblock")) +if data.adblock == nil then + btn.inputtitle = "n/a" + btn.inputstyle = nil + btn.disabled = true +elseif dnsFile1 ~= "" or dnsFile2 ~= "" then + btn.inputtitle = translate("Suspend adblock") + btn.inputstyle = "reset" + btn.disabled = false + function btn.write() + luci.sys.call("/etc/init.d/adblock suspend >/dev/null 2>&1") + end +else + btn.inputtitle = translate("Resume adblock") + btn.inputstyle = "apply" + btn.disabled = false + function btn.write() + luci.sys.call("/etc/init.d/adblock resume >/dev/null 2>&1") + end +end + +o2 = s:option(Flag, "adb_debug", translate("Enable verbose debug logging")) +o2.default = o2.disabled +o2.rmempty = false + +o3 = s:option(Value, "adb_iface", translate("Restrict interface reload trigger to certain interface(s)"), + translate("Space separated list of interfaces that trigger a reload action. ".. + "To disable reload trigger at all remove all entries.")) +o3.rmempty =true + +-- Runtime information + + ds = s:option(DummyValue, "_dummy", translate("Runtime information")) + ds.template = "cbi/nullsection" + + dv1 = s:option(DummyValue, "adblock_version", translate("Adblock version")) + dv1.template = "adblock/runtime" + if data.adblock ~= nil then + dv1.value = data.adblock.adblock.adblock_version or "n/a" + else + dv1.value = "n/a" + end + + dv2 = s:option(DummyValue, "status", translate("Status")) + dv2.template = "adblock/runtime" + if data.adblock == nil then + dv2.value = "n/a" + elseif dnsFile1 ~= "" or dnsFile2 ~= "" then + dv2.value = "active" + else + dv2.value = "suspended" + end + + dv3 = s:option(DummyValue, "dns_backend", translate("DNS backend")) + dv3.template = "adblock/runtime" + if data.adblock ~= nil then + dv3.value = data.adblock.adblock.dns_backend or "n/a" + else + dv3.value = "n/a" + end + + dv4 = s:option(DummyValue, "blocked_domains", translate("Blocked domains (overall)")) + dv4.template = "adblock/runtime" + if data.adblock ~= nil then + dv4.value = data.adblock.adblock.blocked_domains or "n/a" + else + dv4.value = "n/a" + end + + dv5 = s:option(DummyValue, "last_rundate", translate("Last rundate")) + dv5.template = "adblock/runtime" + if data.adblock ~= nil then + dv5.value = data.adblock.adblock.last_rundate or "n/a" + else + dv5.value = "n/a" + end + +-- Blocklist options + +bl = m:section(TypedSection, "source", translate("Blocklist sources"), + translate("Available blocklist sources. ") + .. translate("Note that list URLs and Shallalist category selections are configurable in the 'Advanced' section.")) +bl.template = "cbi/tblsection" + +name = bl:option(Flag, "enabled", translate("Enabled")) +name.rmempty = false + +des = bl:option(DummyValue, "adb_src_desc", translate("Description")) + +-- Backup options + +s = m:section(NamedSection, "global", "adblock", translate("Backup options")) + +o4 = s:option(Flag, "adb_backup", translate("Enable blocklist backup")) +o4.rmempty = false +o4.default = 0 + +o5 = s:option(Value, "adb_backupdir", translate("Backup directory")) +o5.rmempty = false +o5.datatype = "directory" + +return m diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua new file mode 100644 index 0000000000..6c4dee4676 --- /dev/null +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua @@ -0,0 +1,39 @@ +-- Copyright 2016 Hannu Nyman +-- Copyright 2017 Dirk Brenken (dev@brenken.org) +-- This is free software, licensed under the Apache License, Version 2.0 + +local fs = require("nixio.fs") +local util = require("luci.util") +local uci = require("uci") +local adbinput = uci.get("adblock", "global", "adb_whitelist") or " " + +if not nixio.fs.access(adbinput) then + m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) + return m +end + +m = SimpleForm("input", nil) + m:append(Template("adblock/config_css")) + +s = m:section(SimpleSection, nil, + translatef("This form allows you to modify the content of the adblock whitelist (%s).<br />", adbinput) + .. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not.")) + +f = s:option(TextValue, "data") + f.rmempty = true + f.datatype = "string" + f.rows = 20 + + function f.cfgvalue() + return nixio.fs.readfile(adbinput) or "" + end + + function f.write(self, section, data) + return nixio.fs.writefile(adbinput, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") + end + + function s.handle(self, state, data) + return true + end + +return m diff --git a/applications/luci-app-adblock/luasrc/view/adblock/config_css.htm b/applications/luci-app-adblock/luasrc/view/adblock/config_css.htm new file mode 100644 index 0000000000..53493a18fb --- /dev/null +++ b/applications/luci-app-adblock/luasrc/view/adblock/config_css.htm @@ -0,0 +1,10 @@ +<style type="text/css"> + textarea + { + border: 1px solid #cccccc; + padding: 5px; + font-size: 12px; + font-family: monospace; + resize: none; + } +</style> diff --git a/applications/luci-app-adblock/luasrc/view/adblock/logread.htm b/applications/luci-app-adblock/luasrc/view/adblock/logread.htm new file mode 100644 index 0000000000..ce842a88e8 --- /dev/null +++ b/applications/luci-app-adblock/luasrc/view/adblock/logread.htm @@ -0,0 +1,15 @@ +<%# +Copyright 2016 Hannu Nyman +Copyright 2017 Dirk Brenken (dev@brenken.org) +This is free software, licensed under the Apache License, Version 2.0 +-%> + +<%+header%> + +<div class="cbi-map"> + <fieldset class="cbi-section"> + <div class="cbi-section-descr"><%:This form shows the syslog output, pre-filtered for adblock related messages only.%></div> + <textarea id="logread_id" style="width: 100%; height: 450px; border: 1px solid #cccccc; padding: 5px; font-size: 12px; font-family: monospace; resize: none;" readonly="readonly" wrap="off" rows="<%=content:cmatch("\n")+2%>"><%=content:pcdata()%></textarea> + </fieldset> +</div> +<%+footer%> diff --git a/applications/luci-app-adblock/luasrc/view/adblock/query.htm b/applications/luci-app-adblock/luasrc/view/adblock/query.htm new file mode 100644 index 0000000000..5e064af858 --- /dev/null +++ b/applications/luci-app-adblock/luasrc/view/adblock/query.htm @@ -0,0 +1,66 @@ +<%# +Copyright 2016 Hannu Nyman +Copyright 2017 Dirk Brenken (dev@brenken.org) +This is free software, licensed under the Apache License, Version 2.0 +-%> + +<%+header%> + +<script type="text/javascript" src="<%=resource%>/cbi.js"></script> +<script type="text/javascript"> +//<![CDATA[ + var stxhr = new XHR(); + + function update_status(data) + { + var domain = data.value; + var input = document.getElementById('query_input'); + var output = document.getElementById('query_output'); + + if (input && output) + { + output.innerHTML = + '<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /> ' + + '<%:Waiting for command to complete...%>' + ; + input.parentNode.style.display = 'block'; + input.style.display = 'inline'; + stxhr.post('<%=luci.dispatcher.build_url('admin/services/adblock/advanced/result/')%>' + domain, { token: '<%=token%>' }, + function(x) + { + if (x.responseText) + { + input.style.display = 'none'; + output.innerHTML = String.format('<pre>%h</pre>', x.responseText); + } + else + { + input.style.display = 'none'; + output.innerHTML = '<span class="error"><%:Invalid domain specified!%></span>'; + } + } + ); + } + } +//]]> +</script> + +<form method="post" action="<%=REQUEST_URI%>"> + <div class="cbi-map"> + <fieldset class="cbi-section"> + <div class="cbi-section-descr"><%:This form allows you to query active block lists for certain domains, e.g. for whitelisting.%></div> + <div style="width:33%; float:left;"> + <input style="margin: 5px 0" type="text" value="www.lede-project.org" name="input" /> + <input type="button" value="<%:Query%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.input)" /> + </div> + <br style="clear:both" /> + <br /> + </fieldset> + </div> + <fieldset class="cbi-section" style="display:none"> + <legend id="query_input"><%:Collecting data...%></legend> + <span id="query_output"></span> + </fieldset> +</form> + +<%+footer%> diff --git a/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm b/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm new file mode 100644 index 0000000000..4a90d41966 --- /dev/null +++ b/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm @@ -0,0 +1,11 @@ +<%# +Copyright 2016 Hannu Nyman +Copyright 2017 Dirk Brenken (dev@brenken.org) +This is free software, licensed under the Apache License, Version 2.0 +-%> + +<%+cbi/valueheader%> + +<input name="runtime" id="runtime" type="text" class="cbi-input-text" style="border: none; box-shadow: none; background-color: #ffffff; color: #0069d6;" value="<%=self:cfgvalue(section)%>" disabled="disabled" /> + +<%+cbi/valuefooter%> diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po index f436f5cc2b..d37fa748cb 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -8,21 +8,29 @@ msgstr "" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.12\n" +"X-Generator: Poedit 2.0\n" "Language: ja\n" -msgid "" -"). Note that list URLs and Shallalist category selections are not " -"configurable via Luci." -msgstr "" -")。これらのリストのURLおよびshallaリストの選択済みカテゴリーは、Luciを通して" -"設定することができません。" +msgid "." +msgstr "。" msgid "Adblock" msgstr "Adblock" -msgid "Available blocklist sources (" -msgstr "利用可能なブロックリスト提供元です(" +msgid "Adblock Domain Query" +msgstr "Adblock ドメイン検索" + +msgid "Adblock Logfile" +msgstr "Adblock ログファイル" + +msgid "Adblock version" +msgstr "Adblock バージョン" + +msgid "Advanced" +msgstr "詳細設定" + +msgid "Available blocklist sources." +msgstr "利用可能なブロックリスト提供元です。" msgid "Backup directory" msgstr "バックアップ先 ディレクトリ" @@ -30,20 +38,38 @@ msgstr "バックアップ先 ディレクトリ" msgid "Backup options" msgstr "バックアップ オプション" +msgid "Blocked domains (overall)" +msgstr "ブロック済みドメイン(全体)" + msgid "Blocklist sources" msgstr "ブロックリスト提供元" +msgid "Collecting data..." +msgstr "データ収集中です..." + msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" -"DNSの利用によって広告/不正ドメインをブロックする、adblock パッケージの設定で" +"DNS の利用によって広告/不正ドメインをブロックする、Adblock パッケージの設定で" "す。" +msgid "DNS backend" +msgstr "DNS バックエンド" + msgid "Description" msgstr "説明" +msgid "Edit Blacklist" +msgstr "ブラックリストの編集" + +msgid "Edit Configuration" +msgstr "設定の編集" + +msgid "Edit Whitelist" +msgstr "ホワイトリストの編集" + msgid "Enable adblock" -msgstr "adblockの有効化" +msgstr "Adblock の有効化" msgid "Enable blocklist backup" msgstr "ブロックリスト バックアップの有効化" @@ -54,38 +80,174 @@ msgstr "詳細なデバッグ ログの有効化" msgid "Enabled" msgstr "有効" -msgid "Extra options" -msgstr "拡張設定" +msgid "For further information" +msgstr "詳細な情報は" + +msgid "Input file not found, please check your configuration." +msgstr "入力ファイルが見つかりません。設定を確認してください。" + +msgid "Invalid domain specified!" +msgstr "無効なドメインが指定されています!" + +msgid "Last rundate" +msgstr "最終実行日時" + +msgid "Loading" +msgstr "読込中" + +msgid "" +"Note that list URLs and Shallalist category selections are configurable in " +"the 'Advanced' section." +msgstr "" +"リストの URL 及び \"Shalla\" リストのカテゴリー設定は、'詳細設定' セクション" +"で設定することができます。" + +msgid "Overview" +msgstr "概要" + +msgid "" +"Please add only one domain per line. Comments introduced with '#' are " +"allowed - ip addresses, wildcards and regex are not." +msgstr "" +"1行に1つのドメインを追加してください。'#' から始まるコメントを記述できます" +"が、IP アドレスやワイルドカード、正規表現を設定値として使用することはできませ" +"ん。" + +msgid "Query" +msgstr "検索" + +msgid "Query domains" +msgstr "ドメインの検索" + +msgid "Restrict interface reload trigger to certain interface(s)" +msgstr "リロード トリガを特定のインターフェースに限定する" + +msgid "Resume adblock" +msgstr "Adblock の再開" + +msgid "Runtime information" +msgstr "実行情報" + +msgid "" +"Space separated list of interfaces that trigger a reload action. To disable " +"reload trigger at all remove all entries." +msgstr "" +"リロードのトリガとなる、スペースで区切られたインターフェースのリストです。リ" +"ロード トリガを無効にするには、全てのエントリーを削除して空欄にします。" + +msgid "Status" +msgstr "ステータス" + +msgid "Suspend / Resume adblock" +msgstr "Adblock の一時停止/再開" + +msgid "Suspend adblock" +msgstr "Adblock の一時停止" msgid "" -"File with whitelisted hosts/domains that are allowed despite being on a " -"blocklist." +"This form allows you to modify the content of the adblock blacklist (%s)." +"<br />" msgstr "" -"ホワイトリスト ファイル内のホスト/ドメインは、ブロックリストの登録に関わらず" -"許可されます。" +"このフォームでは、Adblock ブラックリスト (%s) の内容を変更することができま" +"す。<br />" -msgid "Global options" -msgstr "一般設定" +msgid "" +"This form allows you to modify the content of the adblock whitelist (%s)." +"<br />" +msgstr "" +"このフォームでは、Adblock ホワイトリスト (%s) の内容を変更することができま" +"す。<br />" msgid "" -"Options for further tweaking in case the defaults are not suitable for you." -msgstr "デフォルト設定が適切でない場合、追加で設定するためのオプションです。" +"This form allows you to modify the content of the main adblock configuration " +"file (/etc/config/adblock)." +msgstr "" +"このフォームでは、メインのAdblock 設定ファイル (/etc/config/adblock) の内容を" +"変更することができます。" -msgid "Restrict reload trigger to certain interface(s)" -msgstr "リロードトリガを特定のインターフェースに限定する" +msgid "" +"This form allows you to query active block lists for certain domains, e.g. " +"for whitelisting." +msgstr "" +"このフォームでは、現在有効なリスト内で特定のドメインを検索することができま" +"す。例: ホワイトリスト内" msgid "" -"Space separated list of wan interfaces that trigger reload action. To " -"disable reload trigger set it to 'false'. Default: empty" +"This form shows the syslog output, pre-filtered for adblock related messages " +"only." msgstr "" -"リロード実行のトリガとなる、スペースで区切られたWANインターフェースのリストで" -"す。リロードトリガを無効にするには、 false を設定します。デフォルト:(空)" +"このフォームには、システムログ内の Adblock に関連するメッセージのみが表示され" +"ます。" + +msgid "View Logfile" +msgstr "ログファイルを見る" + +msgid "Waiting for command to complete..." +msgstr "コマンドの完了をお待ちください..." + +msgid "see online documentation" +msgstr "オンライン ドキュメントを確認してください" + +#~ msgid "" +#~ "Space separated list of interfaces that trigger a reload action. To " +#~ "disable reload trigger at all set it to 'false'." +#~ msgstr "" +#~ "リロードのトリガとなる、スペースで区切られたインターフェースのリストで" +#~ "す。'false' に設定した場合、全てのリロード トリガは無効になります。" + +#~ msgid "" +#~ "Please add only one domain per line. Comments introduced with '#' are " +#~ "allowed - ip addresses, wildcards & regex are not." +#~ msgstr "" +#~ "一行に一つのドメインを追加してください。'#' から始まるコメントを記述できま" +#~ "すが、IPアドレスやワイルドカード、正規表現を設定値として使用することはでき" +#~ "ません。" + +#~ msgid "" +#~ "). Note that list URLs and Shallalist category selections are not " +#~ "configurable via Luci." +#~ msgstr "" +#~ ")。これらのリストのURLおよびshallaリストの選択済みカテゴリーは、Luciを通" +#~ "して設定することができません。" + +#~ msgid "Available blocklist sources (" +#~ msgstr "利用可能なブロックリスト提供元です(" + +#~ msgid "Extra options" +#~ msgstr "拡張設定" + +#~ msgid "" +#~ "File with whitelisted hosts/domains that are allowed despite being on a " +#~ "blocklist." +#~ msgstr "" +#~ "ホワイトリスト ファイル内のホスト/ドメインは、ブロックリストの登録に関わら" +#~ "ず許可されます。" + +#~ msgid "Global options" +#~ msgstr "一般設定" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "デフォルト設定が適切でない場合、追加で設定するためのオプションです。" + +#~ msgid "Restrict reload trigger to certain interface(s)" +#~ msgstr "リロードトリガを特定のインターフェースに限定する" + +#~ msgid "" +#~ "Space separated list of wan interfaces that trigger reload action. To " +#~ "disable reload trigger set it to 'false'. Default: empty" +#~ msgstr "" +#~ "リロード実行のトリガとなる、スペースで区切られたWANインターフェースのリス" +#~ "トです。リロードトリガを無効にするには、 false を設定します。デフォルト:" +#~ "(空)" -msgid "Whitelist file" -msgstr "ホワイトリスト ファイル" +#~ msgid "Whitelist file" +#~ msgstr "ホワイトリスト ファイル" -msgid "see list details" -msgstr "リストの詳細を見る" +#~ msgid "see list details" +#~ msgstr "リストの詳細を見る" #~ msgid "Count" #~ msgstr "カウント" diff --git a/applications/luci-app-adblock/po/pt-br/adblock.po b/applications/luci-app-adblock/po/pt-br/adblock.po index a238dc7f94..32553277b2 100644 --- a/applications/luci-app-adblock/po/pt-br/adblock.po +++ b/applications/luci-app-adblock/po/pt-br/adblock.po @@ -12,18 +12,26 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "Language: pt_BR\n" -msgid "" -"). Note that list URLs and Shallalist category selections are not " -"configurable via Luci." +msgid "." msgstr "" -"). Note que a lista de URL e as seleções de categoria da Shallalist não são " -"configuráveis pelo Luci." msgid "Adblock" msgstr "Adblock" -msgid "Available blocklist sources (" -msgstr "Fontes de listas de bloqueio disponíveis (" +msgid "Adblock Domain Query" +msgstr "" + +msgid "Adblock Logfile" +msgstr "" + +msgid "Adblock version" +msgstr "" + +msgid "Advanced" +msgstr "" + +msgid "Available blocklist sources." +msgstr "" msgid "Backup directory" msgstr "Diretório da cópia de segurança" @@ -31,18 +39,36 @@ msgstr "Diretório da cópia de segurança" msgid "Backup options" msgstr "Opções da cópia de segurança" +msgid "Blocked domains (overall)" +msgstr "" + msgid "Blocklist sources" msgstr "Fontes de listas de bloqueio" +msgid "Collecting data..." +msgstr "" + msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" "Configuração do pacote adblock para bloquear, usando o DNS, domínios que " "distribuem propagandas abusivas." +msgid "DNS backend" +msgstr "" + msgid "Description" msgstr "Descrição" +msgid "Edit Blacklist" +msgstr "" + +msgid "Edit Configuration" +msgstr "" + +msgid "Edit Whitelist" +msgstr "" + msgid "Enable adblock" msgstr "Habilitar adblock" @@ -55,38 +81,140 @@ msgstr "Habilite registros detalhados para depuração" msgid "Enabled" msgstr "Habilitado" -msgid "Extra options" -msgstr "Opções adicionais" +msgid "For further information" +msgstr "" + +msgid "Input file not found, please check your configuration." +msgstr "" + +msgid "Invalid domain specified!" +msgstr "" + +msgid "Last rundate" +msgstr "" + +msgid "Loading" +msgstr "" msgid "" -"File with whitelisted hosts/domains that are allowed despite being on a " -"blocklist." +"Note that list URLs and Shallalist category selections are configurable in " +"the 'Advanced' section." msgstr "" -"Arquivo com a lista branca dos equipamentos/domínios que serão autorizados " -"mesmo estando na lista de bloqueio." -msgid "Global options" -msgstr "Opções Globais" +msgid "Overview" +msgstr "" msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +"Please add only one domain per line. Comments introduced with '#' are " +"allowed - ip addresses, wildcards and regex are not." msgstr "" -"Opções para aprimoramentos adicionais caso as opções padrão não sejam " -"suficientes para você." -msgid "Restrict reload trigger to certain interface(s)" -msgstr "Restringir o gatilho de recarga para somente alguma(s) interface(s)" +msgid "Query" +msgstr "" + +msgid "Query domains" +msgstr "" + +msgid "Restrict interface reload trigger to certain interface(s)" +msgstr "" + +msgid "Resume adblock" +msgstr "" + +msgid "Runtime information" +msgstr "" msgid "" -"Space separated list of wan interfaces that trigger reload action. To " -"disable reload trigger set it to 'false'. Default: empty" +"Space separated list of interfaces that trigger a reload action. To disable " +"reload trigger at all remove all entries." +msgstr "" + +msgid "Status" msgstr "" -"Lista das interfaces WAN, separadas por espaço, que podem disparar uma ação " -"de recarga. Para desabilitar este gatilho, defina-o como 'false'. Padrão: em " -"branco" -msgid "Whitelist file" -msgstr "Arquivo da lista branca" +msgid "Suspend / Resume adblock" +msgstr "" + +msgid "Suspend adblock" +msgstr "" + +msgid "" +"This form allows you to modify the content of the adblock blacklist (%s)." +"<br />" +msgstr "" + +msgid "" +"This form allows you to modify the content of the adblock whitelist (%s)." +"<br />" +msgstr "" + +msgid "" +"This form allows you to modify the content of the main adblock configuration " +"file (/etc/config/adblock)." +msgstr "" + +msgid "" +"This form allows you to query active block lists for certain domains, e.g. " +"for whitelisting." +msgstr "" + +msgid "" +"This form shows the syslog output, pre-filtered for adblock related messages " +"only." +msgstr "" + +msgid "View Logfile" +msgstr "" + +msgid "Waiting for command to complete..." +msgstr "" + +msgid "see online documentation" +msgstr "" -msgid "see list details" -msgstr "veja os detalhes da lista" +#~ msgid "" +#~ "). Note that list URLs and Shallalist category selections are not " +#~ "configurable via Luci." +#~ msgstr "" +#~ "). Note que a lista de URL e as seleções de categoria da Shallalist não " +#~ "são configuráveis pelo Luci." + +#~ msgid "Available blocklist sources (" +#~ msgstr "Fontes de listas de bloqueio disponíveis (" + +#~ msgid "Extra options" +#~ msgstr "Opções adicionais" + +#~ msgid "" +#~ "File with whitelisted hosts/domains that are allowed despite being on a " +#~ "blocklist." +#~ msgstr "" +#~ "Arquivo com a lista branca dos equipamentos/domínios que serão " +#~ "autorizados mesmo estando na lista de bloqueio." + +#~ msgid "Global options" +#~ msgstr "Opções Globais" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Opções para aprimoramentos adicionais caso as opções padrão não sejam " +#~ "suficientes para você." + +#~ msgid "Restrict reload trigger to certain interface(s)" +#~ msgstr "Restringir o gatilho de recarga para somente alguma(s) interface(s)" + +#~ msgid "" +#~ "Space separated list of wan interfaces that trigger reload action. To " +#~ "disable reload trigger set it to 'false'. Default: empty" +#~ msgstr "" +#~ "Lista das interfaces WAN, separadas por espaço, que podem disparar uma " +#~ "ação de recarga. Para desabilitar este gatilho, defina-o como 'false'. " +#~ "Padrão: em branco" + +#~ msgid "Whitelist file" +#~ msgstr "Arquivo da lista branca" + +#~ msgid "see list details" +#~ msgstr "veja os detalhes da lista" diff --git a/applications/luci-app-adblock/po/sv/adblock.po b/applications/luci-app-adblock/po/sv/adblock.po index 22a30e9a10..0e2f039de7 100644 --- a/applications/luci-app-adblock/po/sv/adblock.po +++ b/applications/luci-app-adblock/po/sv/adblock.po @@ -1,16 +1,26 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8\n" -msgid "" -"). Note that list URLs and Shallalist category selections are not " -"configurable via Luci." +msgid "." msgstr "" msgid "Adblock" msgstr "Blockering av annonser" -msgid "Available blocklist sources (" -msgstr "Tillgängliga källor för blockeringslistor (" +msgid "Adblock Domain Query" +msgstr "" + +msgid "Adblock Logfile" +msgstr "" + +msgid "Adblock version" +msgstr "" + +msgid "Advanced" +msgstr "" + +msgid "Available blocklist sources." +msgstr "" msgid "Backup directory" msgstr "Säkerhetskopiera mapp" @@ -18,18 +28,36 @@ msgstr "Säkerhetskopiera mapp" msgid "Backup options" msgstr "Alternativ för säkerhetskopiering" +msgid "Blocked domains (overall)" +msgstr "" + msgid "Blocklist sources" msgstr "Källor för blockeringslistor" +msgid "Collecting data..." +msgstr "" + msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" "Konfiguration av paket adblock för att blockera annons/otillåtna domäner " "genom att användning DNS." +msgid "DNS backend" +msgstr "" + msgid "Description" msgstr "Beskrivning" +msgid "Edit Blacklist" +msgstr "" + +msgid "Edit Configuration" +msgstr "" + +msgid "Edit Whitelist" +msgstr "" + msgid "Enable adblock" msgstr "Aktivera abblock" @@ -42,34 +70,111 @@ msgstr "" msgid "Enabled" msgstr "Aktiverad" -msgid "Extra options" -msgstr "Extra alternativ" +msgid "For further information" +msgstr "" + +msgid "Input file not found, please check your configuration." +msgstr "" + +msgid "Invalid domain specified!" +msgstr "" + +msgid "Last rundate" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "" +"Note that list URLs and Shallalist category selections are configurable in " +"the 'Advanced' section." +msgstr "" + +msgid "Overview" +msgstr "" msgid "" -"File with whitelisted hosts/domains that are allowed despite being on a " -"blocklist." +"Please add only one domain per line. Comments introduced with '#' are " +"allowed - ip addresses, wildcards and regex are not." +msgstr "" + +msgid "Query" +msgstr "" + +msgid "Query domains" +msgstr "" + +msgid "Restrict interface reload trigger to certain interface(s)" +msgstr "" + +msgid "Resume adblock" msgstr "" -msgid "Global options" -msgstr "Globala alternativ" +msgid "Runtime information" +msgstr "" msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +"Space separated list of interfaces that trigger a reload action. To disable " +"reload trigger at all remove all entries." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Suspend / Resume adblock" msgstr "" -msgid "Restrict reload trigger to certain interface(s)" +msgid "Suspend adblock" msgstr "" msgid "" -"Space separated list of wan interfaces that trigger reload action. To " -"disable reload trigger set it to 'false'. Default: empty" +"This form allows you to modify the content of the adblock blacklist (%s)." +"<br />" msgstr "" -msgid "Whitelist file" -msgstr "Vitlista fil" +msgid "" +"This form allows you to modify the content of the adblock whitelist (%s)." +"<br />" +msgstr "" + +msgid "" +"This form allows you to modify the content of the main adblock configuration " +"file (/etc/config/adblock)." +msgstr "" + +msgid "" +"This form allows you to query active block lists for certain domains, e.g. " +"for whitelisting." +msgstr "" + +msgid "" +"This form shows the syslog output, pre-filtered for adblock related messages " +"only." +msgstr "" + +msgid "View Logfile" +msgstr "" + +msgid "Waiting for command to complete..." +msgstr "" + +msgid "see online documentation" +msgstr "" + +#~ msgid "Available blocklist sources (" +#~ msgstr "Tillgängliga källor för blockeringslistor (" + +#~ msgid "Extra options" +#~ msgstr "Extra alternativ" + +#~ msgid "Global options" +#~ msgstr "Globala alternativ" + +#~ msgid "Whitelist file" +#~ msgstr "Vitlista fil" -msgid "see list details" -msgstr "se listans detaljer" +#~ msgid "see list details" +#~ msgstr "se listans detaljer" #~ msgid "Count" #~ msgstr "Räkna" diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index 6b2dbd13b3..464ffd9949 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -1,15 +1,25 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -msgid "" -"). Note that list URLs and Shallalist category selections are not " -"configurable via Luci." +msgid "." msgstr "" msgid "Adblock" msgstr "" -msgid "Available blocklist sources (" +msgid "Adblock Domain Query" +msgstr "" + +msgid "Adblock Logfile" +msgstr "" + +msgid "Adblock version" +msgstr "" + +msgid "Advanced" +msgstr "" + +msgid "Available blocklist sources." msgstr "" msgid "Backup directory" @@ -18,16 +28,34 @@ msgstr "" msgid "Backup options" msgstr "" +msgid "Blocked domains (overall)" +msgstr "" + msgid "Blocklist sources" msgstr "" +msgid "Collecting data..." +msgstr "" + msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" +msgid "DNS backend" +msgstr "" + msgid "Description" msgstr "" +msgid "Edit Blacklist" +msgstr "" + +msgid "Edit Configuration" +msgstr "" + +msgid "Edit Whitelist" +msgstr "" + msgid "Enable adblock" msgstr "" @@ -40,31 +68,93 @@ msgstr "" msgid "Enabled" msgstr "" -msgid "Extra options" +msgid "For further information" +msgstr "" + +msgid "Input file not found, please check your configuration." +msgstr "" + +msgid "Invalid domain specified!" +msgstr "" + +msgid "Last rundate" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "" +"Note that list URLs and Shallalist category selections are configurable in " +"the 'Advanced' section." +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "" +"Please add only one domain per line. Comments introduced with '#' are " +"allowed - ip addresses, wildcards and regex are not." +msgstr "" + +msgid "Query" +msgstr "" + +msgid "Query domains" +msgstr "" + +msgid "Restrict interface reload trigger to certain interface(s)" +msgstr "" + +msgid "Resume adblock" +msgstr "" + +msgid "Runtime information" msgstr "" msgid "" -"File with whitelisted hosts/domains that are allowed despite being on a " -"blocklist." +"Space separated list of interfaces that trigger a reload action. To disable " +"reload trigger at all remove all entries." +msgstr "" + +msgid "Status" msgstr "" -msgid "Global options" +msgid "Suspend / Resume adblock" +msgstr "" + +msgid "Suspend adblock" msgstr "" msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +"This form allows you to modify the content of the adblock blacklist (%s)." +"<br />" msgstr "" -msgid "Restrict reload trigger to certain interface(s)" +msgid "" +"This form allows you to modify the content of the adblock whitelist (%s)." +"<br />" msgstr "" msgid "" -"Space separated list of wan interfaces that trigger reload action. To " -"disable reload trigger set it to 'false'. Default: empty" +"This form allows you to modify the content of the main adblock configuration " +"file (/etc/config/adblock)." +msgstr "" + +msgid "" +"This form allows you to query active block lists for certain domains, e.g. " +"for whitelisting." +msgstr "" + +msgid "" +"This form shows the syslog output, pre-filtered for adblock related messages " +"only." +msgstr "" + +msgid "View Logfile" msgstr "" -msgid "Whitelist file" +msgid "Waiting for command to complete..." msgstr "" -msgid "see list details" +msgid "see online documentation" msgstr "" diff --git a/applications/luci-app-adblock/po/zh-cn/adblock.po b/applications/luci-app-adblock/po/zh-cn/adblock.po index 2878d8afaf..36af78bdab 100644 --- a/applications/luci-app-adblock/po/zh-cn/adblock.po +++ b/applications/luci-app-adblock/po/zh-cn/adblock.po @@ -12,16 +12,26 @@ msgstr "" "X-Generator: Poedit 1.8.5\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgid "" -"). Note that list URLs and Shallalist category selections are not " -"configurable via Luci." -msgstr ")。需要注意的是列表URL和列表类别选项无法通过Luci设置。" +msgid "." +msgstr "" msgid "Adblock" msgstr "Adblock" -msgid "Available blocklist sources (" -msgstr "可用拦截列表来源(" +msgid "Adblock Domain Query" +msgstr "" + +msgid "Adblock Logfile" +msgstr "" + +msgid "Adblock version" +msgstr "" + +msgid "Advanced" +msgstr "" + +msgid "Available blocklist sources." +msgstr "" msgid "Backup directory" msgstr "备份目录" @@ -29,16 +39,34 @@ msgstr "备份目录" msgid "Backup options" msgstr "备份选项" +msgid "Blocked domains (overall)" +msgstr "" + msgid "Blocklist sources" msgstr "拦截列表来源" +msgid "Collecting data..." +msgstr "" + msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "Adblock 配置工具,通过 DNS 来拦截广告和阻止域名。" +msgid "DNS backend" +msgstr "" + msgid "Description" msgstr "描述" +msgid "Edit Blacklist" +msgstr "" + +msgid "Edit Configuration" +msgstr "" + +msgid "Edit Whitelist" +msgstr "" + msgid "Enable adblock" msgstr "启用Adblock" @@ -51,34 +79,126 @@ msgstr "" msgid "Enabled" msgstr "启用" -msgid "Extra options" -msgstr "额外选项" +msgid "For further information" +msgstr "" + +msgid "Input file not found, please check your configuration." +msgstr "" + +msgid "Invalid domain specified!" +msgstr "" + +msgid "Last rundate" +msgstr "" + +msgid "Loading" +msgstr "" msgid "" -"File with whitelisted hosts/domains that are allowed despite being on a " -"blocklist." -msgstr "允许的主机/域名列表" +"Note that list URLs and Shallalist category selections are configurable in " +"the 'Advanced' section." +msgstr "" -msgid "Global options" -msgstr "全局选项" +msgid "Overview" +msgstr "" msgid "" -"Options for further tweaking in case the defaults are not suitable for you." -msgstr "在默认设置并不适合你时的额外选项。" +"Please add only one domain per line. Comments introduced with '#' are " +"allowed - ip addresses, wildcards and regex are not." +msgstr "" -msgid "Restrict reload trigger to certain interface(s)" +msgid "Query" +msgstr "" + +msgid "Query domains" +msgstr "" + +msgid "Restrict interface reload trigger to certain interface(s)" +msgstr "" + +msgid "Resume adblock" +msgstr "" + +msgid "Runtime information" +msgstr "" + +msgid "" +"Space separated list of interfaces that trigger a reload action. To disable " +"reload trigger at all remove all entries." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Suspend / Resume adblock" +msgstr "" + +msgid "Suspend adblock" +msgstr "" + +msgid "" +"This form allows you to modify the content of the adblock blacklist (%s)." +"<br />" msgstr "" msgid "" -"Space separated list of wan interfaces that trigger reload action. To " -"disable reload trigger set it to 'false'. Default: empty" +"This form allows you to modify the content of the adblock whitelist (%s)." +"<br />" msgstr "" -msgid "Whitelist file" -msgstr "白名单文件" +msgid "" +"This form allows you to modify the content of the main adblock configuration " +"file (/etc/config/adblock)." +msgstr "" + +msgid "" +"This form allows you to query active block lists for certain domains, e.g. " +"for whitelisting." +msgstr "" + +msgid "" +"This form shows the syslog output, pre-filtered for adblock related messages " +"only." +msgstr "" + +msgid "View Logfile" +msgstr "" + +msgid "Waiting for command to complete..." +msgstr "" + +msgid "see online documentation" +msgstr "" + +#~ msgid "" +#~ "). Note that list URLs and Shallalist category selections are not " +#~ "configurable via Luci." +#~ msgstr ")。需要注意的是列表URL和列表类别选项无法通过Luci设置。" + +#~ msgid "Available blocklist sources (" +#~ msgstr "可用拦截列表来源(" + +#~ msgid "Extra options" +#~ msgstr "额外选项" + +#~ msgid "" +#~ "File with whitelisted hosts/domains that are allowed despite being on a " +#~ "blocklist." +#~ msgstr "允许的主机/域名列表" + +#~ msgid "Global options" +#~ msgstr "全局选项" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "在默认设置并不适合你时的额外选项。" + +#~ msgid "Whitelist file" +#~ msgstr "白名单文件" -msgid "see list details" -msgstr "查看列表详情" +#~ msgid "see list details" +#~ msgstr "查看列表详情" #~ msgid "Count" #~ msgstr "数量" |