Merge pull request #5971 from pymumu/master

luci-app-smartdns: bump to 1.2022.38
This commit is contained in:
Hannu Nyman 2022-09-14 20:13:44 +03:00 committed by GitHub
commit 18887428a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 875 additions and 723 deletions

View file

@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk
PKG_LICENSE:=GPL-3.0-or-later PKG_LICENSE:=GPL-3.0-or-later
PKG_MAINTAINER:=Nick Peng <pymumu@gmail.com> PKG_MAINTAINER:=Nick Peng <pymumu@gmail.com>
PKG_VERSION:=1.2020.30 PKG_VERSION:=1.2022.38
PKG_RELEASE:=1 PKG_RELEASE:=1
LUCI_TITLE:=LuCI for smartdns LUCI_TITLE:=LuCI for smartdns

View file

@ -21,8 +21,9 @@
'require fs'; 'require fs';
'require uci'; 'require uci';
'require form'; 'require form';
'require rpc';
'require view'; 'require view';
'require poll';
'require rpc';
var conf = 'smartdns'; var conf = 'smartdns';
var callServiceList = rpc.declare({ var callServiceList = rpc.declare({
@ -32,7 +33,7 @@ var callServiceList = rpc.declare({
expect: { '': {} } expect: { '': {} }
}); });
function getPidOfSmartdns() { function getServiceStatus() {
return L.resolveDefault(callServiceList(conf), {}) return L.resolveDefault(callServiceList(conf), {})
.then(function (res) { .then(function (res) {
var isrunning = false; var isrunning = false;
@ -43,43 +44,20 @@ function getPidOfSmartdns() {
}); });
} }
function getIPTablesRedirect() {
return fs.exec('/usr/sbin/iptables', ['-t', 'nat', '-nL', 'PREROUTING']).then(function (res) {
if (res.code === 0) {
return res.stdout.trim();
} else {
return "";
}
});
}
function getIP6TablesRedirect() {
return fs.exec('/usr/sbin/ip6tables', ['-t', 'nat', '-nL', 'PREROUTING']).then(function (res) {
if (res.code === 0) {
return res.stdout.trim();
} else {
return "";
}
});
}
function smartdnsServiceStatus() { function smartdnsServiceStatus() {
return Promise.all([ return Promise.all([
getPidOfSmartdns(), getServiceStatus()
getIPTablesRedirect(),
getIP6TablesRedirect()
]); ]);
} }
function smartdnsRenderStatus(res) { function smartdnsRenderStatus(res) {
var renderHTML = ""; var renderHTML = "";
var isRunning = res[0]; var isRunning = res[0];
var ipt = res[1];
var ip6t = res[2];
var serverPort = uci.get_first('smartdns', 'smartdns', 'port'); var autoSetDnsmasq = uci.get_first('smartdns', 'smartdns', 'auto_set_dnsmasq');
var redirectMode = uci.get_first('smartdns', 'smartdns', 'redirect'); var smartdnsPort = uci.get_first('smartdns', 'smartdns', 'port');
var ipv6Enabled = uci.get_first('smartdns', 'smartdns', 'ipv6_server'); var dnsmasqServer = uci.get_first('dhcp', 'dnsmasq', 'server');
uci.unload('dhcp');
if (isRunning) { if (isRunning) {
renderHTML += "<span style=\"color:green;font-weight:bold\">SmartDNS - " + _("RUNNING") + "</span>"; renderHTML += "<span style=\"color:green;font-weight:bold\">SmartDNS - " + _("RUNNING") + "</span>";
@ -88,29 +66,13 @@ function smartdnsRenderStatus(res) {
return renderHTML; return renderHTML;
} }
if (redirectMode === "dnsmasq-upstream") { if (autoSetDnsmasq === '1' && smartdnsPort != '53') {
var matchLine = "127.0.0.1#" + serverPort; var matchLine = "127.0.0.1#" + smartdnsPort;
var dnsmasqServer = uci.get_first('dhcp', 'dnsmasq', 'server') || ""; var dnsmasqServer = uci.get_first('dhcp', 'dnsmasq', 'server') || "";
if (dnsmasqServer.indexOf(matchLine) < 0) { if (dnsmasqServer.indexOf(matchLine) < 0) {
renderHTML += "<br /><span style=\"color:red;font-weight:bold\">" + _("Dnsmasq Forwared To Smartdns Failure") + "</span>"; renderHTML += "<br /><span style=\"color:red;font-weight:bold\">" + _("Dnsmasq Forwared To Smartdns Failure") + "</span>";
} }
} else if (redirectMode === "redirect") {
var redirectRules = (ipt || '').split(/\n/).filter(function (rule) {
return rule.match(/REDIRECT/) && rule.match(/dpt:53/) && rule.match("ports " + serverPort);
});
if (redirectRules.length <= 0) {
renderHTML += "<br /><span style=\"color:red;font-weight:bold\">" + _("IPV4 53 Port Redirect Failure") + "</span>";
if (ipv6Enabled) {
var redirectRules = (ip6t || '').split(/\n/).filter(function (rule) {
return rule.match(/REDIRECT/) && rule.match(/dpt:53/) && rule.match("ports " + serverPort);
});
if (redirectRules.length <= 0) {
renderHTML += "<br /><span style=\"color:red;font-weight:bold\">" + _("IPV6 53 Port Redirect Failure") + "</span>";
}
}
}
} }
return renderHTML; return renderHTML;
@ -119,8 +81,8 @@ function smartdnsRenderStatus(res) {
return view.extend({ return view.extend({
load: function () { load: function () {
return Promise.all([ return Promise.all([
uci.load('dhcp'),
uci.load('smartdns'), uci.load('smartdns'),
uci.load('dhcp')
]); ]);
}, },
render: function (stats) { render: function (stats) {
@ -134,12 +96,18 @@ return view.extend({
s = m.section(form.NamedSection, '_status'); s = m.section(form.NamedSection, '_status');
s.anonymous = true; s.anonymous = true;
s.render = function (section_id) { s.render = function (section_id) {
L.Poll.add(function () { var renderStatus = function () {
return L.resolveDefault(smartdnsServiceStatus()).then(function (res) { return L.resolveDefault(smartdnsServiceStatus()).then(function (res) {
var view = document.getElementById("service_status"); var view = document.getElementById("service_status");
if (view == null) {
return;
}
view.innerHTML = smartdnsRenderStatus(res); view.innerHTML = smartdnsRenderStatus(res);
}); });
}); }
poll.add(renderStatus);
setTimeout(renderStatus, 1000);
return E('div', { class: 'cbi-map' }, return E('div', { class: 'cbi-map' },
E('div', { class: 'cbi-section' }, [ E('div', { class: 'cbi-section' }, [
@ -157,10 +125,9 @@ return view.extend({
s.tab("seconddns", _("Second Server Settings")); s.tab("seconddns", _("Second Server Settings"));
s.tab("custom", _("Custom Settings")); s.tab("custom", _("Custom Settings"));
// Eanble;
o = s.taboption("settings", form.Flag, "enabled", _("Enable"), _("Enable or disable smartdns server")); o = s.taboption("settings", form.Flag, "enabled", _("Enable"), _("Enable or disable smartdns server"));
o.rmempty = false;
o.default = o.disabled; o.default = o.disabled;
o.rempty = false;
// server name; // server name;
o = s.taboption("settings", form.Value, "server_name", _("Server Name"), _("Smartdns server name")); o = s.taboption("settings", form.Value, "server_name", _("Server Name"), _("Smartdns server name"));
@ -169,9 +136,10 @@ return view.extend({
o.rempty = false; o.rempty = false;
// Port; // Port;
o = s.taboption("settings", form.Value, "port", _("Local Port"), _("Smartdns local server port")); o = s.taboption("settings", form.Value, "port", _("Local Port"),
o.placeholder = 6053; _("Smartdns local server port, smartdns will be automatically set as main dns when the port is 53."));
o.default = 6053; o.placeholder = 53;
o.default = 53;
o.datatype = "port"; o.datatype = "port";
o.rempty = false; o.rempty = false;
@ -189,7 +157,7 @@ return view.extend({
o = s.taboption("settings", form.Flag, "dualstack_ip_selection", _("Dual-stack IP Selection"), o = s.taboption("settings", form.Flag, "dualstack_ip_selection", _("Dual-stack IP Selection"),
_("Enable IP selection between IPV4 and IPV6")); _("Enable IP selection between IPV4 and IPV6"));
o.rmempty = false; o.rmempty = false;
o.default = o.disabled; o.default = o.enabled;
// Domain prefetch load ; // Domain prefetch load ;
o = s.taboption("settings", form.Flag, "prefetch_domain", _("Domain prefetch"), o = s.taboption("settings", form.Flag, "prefetch_domain", _("Domain prefetch"),
@ -201,21 +169,32 @@ return view.extend({
o = s.taboption("settings", form.Flag, "serve_expired", _("Serve expired"), o = s.taboption("settings", form.Flag, "serve_expired", _("Serve expired"),
_("Attempts to serve old responses from cache with a TTL of 0 in the response without waiting for the actual resolution to finish.")); _("Attempts to serve old responses from cache with a TTL of 0 in the response without waiting for the actual resolution to finish."));
o.rmempty = false; o.rmempty = false;
o.default = o.disabled; o.default = o.enabled;
// Redirect;
o = s.taboption("settings", form.ListValue, "redirect", _("Redirect"), _("SmartDNS redirect mode"));
o.placeholder = "none";
o.value("none", _("none"));
o.value("dnsmasq-upstream", _("Run as dnsmasq upstream server"));
o.value("redirect", _("Redirect 53 port to SmartDNS"));
o.default = "none";
o.rempty = false;
// cache-size; // cache-size;
o = s.taboption("settings", form.Value, "cache_size", _("Cache Size"), _("DNS domain result cache size")); o = s.taboption("settings", form.Value, "cache_size", _("Cache Size"), _("DNS domain result cache size"));
o.rempty = true; o.rempty = true;
// cache-size;
o = s.taboption("settings", form.Flag, "resolve_local_hostnames", _("Resolve Local Hostnames"), _("Resolve local hostnames by reading Dnsmasq lease file."));
o.rmempty = false;
o.default = o.enabled;
// auto-conf-dnsmasq;
o = s.taboption("settings", form.Flag, "auto_set_dnsmasq", _("Automatically Set Dnsmasq"), _("Automatically set as upstream of dnsmasq when port changes."));
o.rmempty = false;
o.default = o.enabled;
// Force AAAA SOA
o = s.taboption("settings", form.Flag, "force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA."));
o.rmempty = false;
o.default = o.disabled;
// Force HTTPS SOA
o = s.taboption("settings", form.Flag, "force_https_soa", _("Force HTTPS SOA"), _("Force HTTPS SOA."));
o.rmempty = false;
o.default = o.disabled;
// rr-ttl; // rr-ttl;
o = s.taboption("settings", form.Value, "rr_ttl", _("Domain TTL"), _("TTL for all domain result.")); o = s.taboption("settings", form.Value, "rr_ttl", _("Domain TTL"), _("TTL for all domain result."));
o.rempty = true; o.rempty = true;
@ -224,16 +203,21 @@ return view.extend({
o = s.taboption("settings", form.Value, "rr_ttl_min", _("Domain TTL Min"), o = s.taboption("settings", form.Value, "rr_ttl_min", _("Domain TTL Min"),
_("Minimum TTL for all domain result.")); _("Minimum TTL for all domain result."));
o.rempty = true; o.rempty = true;
o.placeholder = "300"; o.placeholder = "600";
o.default = 300; o.default = 600;
o.optional = true; o.optional = true;
// second dns server;
// rr-ttl-max; // rr-ttl-max;
o = s.taboption("settings", form.Value, "rr_ttl_max", _("Domain TTL Max"), o = s.taboption("settings", form.Value, "rr_ttl_max", _("Domain TTL Max"),
_("Maximum TTL for all domain result.")); _("Maximum TTL for all domain result."));
o.rempty = true; o.rempty = true;
// rr-ttl-reply-max;
o = s.taboption("settings", form.Value, "rr_ttl_reply_max", _("Reply Domain TTL Max"),
_("Reply maximum TTL for all domain result."));
o.rempty = true;
// second dns server;
// Eanble; // Eanble;
o = s.taboption("seconddns", form.Flag, "seconddns_enabled", _("Enable"), o = s.taboption("seconddns", form.Flag, "seconddns_enabled", _("Enable"),
_("Enable or disable second DNS server.")); _("Enable or disable second DNS server."));
@ -300,7 +284,7 @@ return view.extend({
o.default = o.disabled; o.default = o.disabled;
// Force AAAA SOA // Force AAAA SOA
o = s.taboption("seconddns", form.Flag, "force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA.")); o = s.taboption("seconddns", form.Flag, "seconddns_force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA."));
o.rmempty = false; o.rmempty = false;
o.default = o.disabled; o.default = o.disabled;
@ -390,6 +374,15 @@ return view.extend({
o.depends("type", "tls") o.depends("type", "tls")
o.depends("type", "https") o.depends("type", "https")
// certificate verify
o = s.taboption("advanced", form.Flag, "no_check_certificate", _("No check certificate"),
_("Do not check certificate."))
o.rmempty = false
o.default = o.disabled
o.modalonly = true;
o.depends("type", "tls")
o.depends("type", "https")
// SNI host name // SNI host name
o = s.taboption("advanced", form.Value, "host_name", _("TLS SNI name"), o = s.taboption("advanced", form.Value, "host_name", _("TLS SNI name"),
_("Sets the server name indication for query.")) _("Sets the server name indication for query."))

View file

@ -10,20 +10,20 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13.1-dev\n" "X-Generator: Weblate 4.13.1-dev\n"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:418
msgid "Additional Args for upstream dns servers" msgid "Additional Args for upstream dns servers"
msgstr "Zusätzliche Argumente für Upstream-DNS-Server" msgstr "Zusätzliche Argumente für Upstream-DNS-Server"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:417
msgid "Additional Server Args" msgid "Additional Server Args"
msgstr "Zusätzliche Server Parameter" msgstr "Zusätzliche Server Parameter"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:331 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:315
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen" msgstr "Erweiterte Einstellungen"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:170
msgid "" msgid ""
"Attempts to serve old responses from cache with a TTL of 0 in the response " "Attempts to serve old responses from cache with a TTL of 0 in the response "
"without waiting for the actual resolution to finish." "without waiting for the actual resolution to finish."
@ -31,15 +31,23 @@ msgstr ""
"Versuche, eine alte Antwort vom Cache mit TTL 0 zurückzugeben, ohne auf die " "Versuche, eine alte Antwort vom Cache mit TTL 0 zurückzugeben, ohne auf die "
"eigentliche Auflösung zu warten." "eigentliche Auflösung zu warten."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically Set Dnsmasq"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically set as upstream of dnsmasq when port changes."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "Cache Size" msgid "Cache Size"
msgstr "Zwischenspeichergröße" msgstr "Zwischenspeichergröße"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:115
msgid "Collecting data ..." msgid "Collecting data ..."
msgstr "Ermittle Daten..." msgstr "Ermittle Daten..."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:445
msgid "" msgid ""
"Configure IP blacklists that will be filtered from the results of specific " "Configure IP blacklists that will be filtered from the results of specific "
"DNS server." "DNS server."
@ -47,131 +55,145 @@ msgstr ""
"Definition einer IP basierten Blockierliste, welche Ergebnisse eines " "Definition einer IP basierten Blockierliste, welche Ergebnisse eines "
"spezifischen DNS Servers filtert." "spezifischen DNS Servers filtert."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:126
msgid "Custom Settings" msgid "Custom Settings"
msgstr "Benutzerdefinierte Einstellungen" msgstr "Benutzerdefinierte Einstellungen"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:340 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324
msgid "DNS Server Name" msgid "DNS Server Name"
msgstr "DNS Server Name" msgstr "DNS Server Name"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "" msgid ""
"DNS Server group belongs to, used with nameserver, such as office, home." "DNS Server group belongs to, used with nameserver, such as office, home."
msgstr "DNS-Server-Gruppe, zu der der Nameserver gehört, z. B. Büro, Zuhause." msgstr "DNS-Server-Gruppe, zu der der Nameserver gehört, z. B. Büro, Zuhause."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "DNS Server ip" msgid "DNS Server ip"
msgstr "DNS-Server IP" msgstr "DNS-Server IP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "DNS Server port" msgid "DNS Server port"
msgstr "DNS-Server-Port" msgstr "DNS-Server-Port"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "DNS Server type" msgid "DNS Server type"
msgstr "DNS-Server Typ" msgstr "DNS-Server Typ"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "DNS domain result cache size" msgid "DNS domain result cache size"
msgstr "DNS Domain Ergebnisspeichergröße" msgstr "DNS Domain Ergebnisspeichergröße"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:74
msgid "Dnsmasq Forwared To Smartdns Failure" msgid "Dnsmasq Forwared To Smartdns Failure"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:264 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:379
msgid "Do not check certificate."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:248
msgid "Do not check speed." msgid "Do not check speed."
msgstr "Geschwindigkeit nicht testen." msgstr "Geschwindigkeit nicht testen."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Domain Address" msgid "Domain Address"
msgstr "Domain Adresse" msgstr "Domain Adresse"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "Domain TTL" msgid "Domain TTL"
msgstr "Domain TTL" msgstr "Domain TTL"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:233 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211
msgid "Domain TTL Max" msgid "Domain TTL Max"
msgstr "Domain TTL Max" msgstr "Domain TTL Max"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:203
msgid "Domain TTL Min" msgid "Domain TTL Min"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:195 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:163
msgid "Domain prefetch" msgid "Domain prefetch"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:476 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:469
msgid "Donate" msgid "Donate"
msgstr "Spenden" msgstr "Spenden"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:475 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "Donate to smartdns" msgid "Donate to smartdns"
msgstr "An smartdns spenden" msgstr "An smartdns spenden"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157
msgid "Dual-stack IP Selection" msgid "Dual-stack IP Selection"
msgstr "Dual-Stack-IP-Auswahl" msgstr "Dual-Stack-IP-Auswahl"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:238 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:222
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:334 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:318
msgid "Enable" msgid "Enable"
msgstr "Aktivieren" msgstr "Aktivieren"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:190 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158
msgid "Enable IP selection between IPV4 and IPV6" msgid "Enable IP selection between IPV4 and IPV6"
msgstr "Aktiviere Wahl zwischen IPv4 und IPv6" msgstr "Aktiviere Wahl zwischen IPv4 und IPv6"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "Enable IPV6 DNS Server" msgid "Enable IPV6 DNS Server"
msgstr "Aktivere IPv6 DNS-Server" msgstr "Aktivere IPv6 DNS-Server"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "Enable TCP DNS Server" msgid "Enable TCP DNS Server"
msgstr "Aktiviere TCP DNS Server" msgstr "Aktiviere TCP DNS Server"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:164
msgid "Enable domain prefetch, accelerate domain response speed." msgid "Enable domain prefetch, accelerate domain response speed."
msgstr "" msgstr ""
"Aktivieren Sie Domänen-Prefetch, um die Reaktionsgeschwindigkeit der Domäne " "Aktivieren Sie Domänen-Prefetch, um die Reaktionsgeschwindigkeit der Domäne "
"zu beschleunigen." "zu beschleunigen."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:239 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:223
msgid "Enable or disable second DNS server." msgid "Enable or disable second DNS server."
msgstr "Aktivieren oder deaktivieren des zweiten DNS-Servers." msgstr "Aktivieren oder deaktivieren des zweiten DNS-Servers."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
msgid "Enable or disable smartdns server" msgid "Enable or disable smartdns server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362
msgid "Filtering IP with blacklist" msgid "Filtering IP with blacklist"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA" msgid "Force AAAA SOA"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA." msgid "Force AAAA SOA."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:156 msgid "Force HTTPS SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:330 msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
msgid "Force HTTPS SOA."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:124
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:314
msgid "General Settings" msgid "General Settings"
msgstr "Allgemeine Einstellungen" msgstr "Allgemeine Einstellungen"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:319 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303
msgid "Generate Coredump" msgid "Generate Coredump"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:320 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304
msgid "" msgid ""
"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" "Generate Coredump file when smartdns crash, coredump file is located at /tmp/"
"smartdns.xxx.core." "smartdns.xxx.core."
@ -181,283 +203,283 @@ msgstr ""
msgid "Grant access to LuCI app smartdns" msgid "Grant access to LuCI app smartdns"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:404 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397
msgid "HTTP Host" msgid "HTTP Host"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "IP Blacklist" msgid "IP Blacklist"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361
msgid "IP Blacklist Filtering" msgid "IP Blacklist Filtering"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:104 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "IPV4 53 Port Redirect Failure"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:110
msgid "IPV6 53 Port Redirect Failure"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "IPV6 Server" msgid "IPV6 Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:463 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:456
msgid "If you like this software, please buy me a cup of coffee." msgid "If you like this software, please buy me a cup of coffee."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:139
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "Local Port" msgid "Local Port"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:212
msgid "Maximum TTL for all domain result." msgid "Maximum TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:225 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:204
msgid "Minimum TTL for all domain result." msgid "Minimum TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:87 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:65
msgid "NOT RUNNING" msgid "NOT RUNNING"
msgstr "LÄUFT NICHT" msgstr "LÄUFT NICHT"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:257 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378
msgid "No check certificate"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241
msgid "Query DNS through specific dns server group, such as office, home." msgid "Query DNS through specific dns server group, such as office, home."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:85 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:63
msgid "RUNNING" msgid "RUNNING"
msgstr "LÄUFT" msgstr "LÄUFT"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216
msgid "Redirect" msgid "Reply Domain TTL Max"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:217
msgid "Redirect 53 port to SmartDNS" msgid "Reply maximum TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Run as dnsmasq upstream server" msgid "Resolve Local Hostnames"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Resolve local hostnames by reading Dnsmasq lease file."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:125
msgid "Second Server Settings" msgid "Second Server Settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:201 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169
msgid "Serve expired" msgid "Serve expired"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:256 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "Server Group" msgid "Server Group"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Server Name" msgid "Server Name"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Set Specific domain ip address." msgid "Set Specific domain ip address."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "Set Specific ip blacklist." msgid "Set Specific ip blacklist."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:385 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:369
msgid "Set TLS hostname to verify." msgid "Set TLS hostname to verify."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:405 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:398
msgid "" msgid ""
"Set the HTTP host used for the query. Use this parameter when the host of " "Set the HTTP host used for the query. Use this parameter when the host of "
"the URL address is an IP address." "the URL address is an IP address."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:395 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:388
msgid "Sets the server name indication for query." msgid "Sets the server name indication for query."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:269 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253
msgid "Skip Address Rules" msgid "Skip Address Rules"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache" msgid "Skip Cache"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache." msgid "Skip Cache."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:292 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276
msgid "Skip Dualstack Selection" msgid "Skip Dualstack Selection"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277
msgid "Skip Dualstack Selection." msgid "Skip Dualstack Selection."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:281 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:265
msgid "Skip Ipset Rule" msgid "Skip Ipset Rule"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:275 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:259
msgid "Skip Nameserver Rule" msgid "Skip Nameserver Rule"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:271
msgid "Skip SOA Address Rule" msgid "Skip SOA Address Rule"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:288 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
msgid "Skip SOA address rules." msgid "Skip SOA address rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:263 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247
msgid "Skip Speed Check" msgid "Skip Speed Check"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:270 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:254
msgid "Skip address rules." msgid "Skip address rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:266
msgid "Skip ipset rules." msgid "Skip ipset rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:260
msgid "Skip nameserver rules." msgid "Skip nameserver rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:129 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:91
#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3
msgid "SmartDNS" msgid "SmartDNS"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:130 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:92
msgid "SmartDNS Server" msgid "SmartDNS Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:93
msgid "" msgid ""
"SmartDNS is a local high-performance DNS server, supports finding fastest " "SmartDNS is a local high-performance DNS server, supports finding fastest "
"IP, supports ad filtering, and supports avoiding DNS poisoning." "IP, supports ad filtering, and supports avoiding DNS poisoning."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:467 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:460
msgid "SmartDNS official website" msgid "SmartDNS official website"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "SmartDNS redirect mode"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244
msgid "Smartdns local server port" msgid "Smartdns local server port"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:140
msgid ""
"Smartdns local server port, smartdns will be automatically set as main dns "
"when the port is 53."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Smartdns server name" msgid "Smartdns server name"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:439 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:432
msgid "" msgid ""
"Specify an IP address to return for any host in the given domains, Queries " "Specify an IP address to return for any host in the given domains, Queries "
"in the domains are never forwarded and always replied to with the specified " "in the domains are never forwarded and always replied to with the specified "
"IP address which may be IPv4 or IPv6." "IP address which may be IPv4 or IPv6."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "TCP Server" msgid "TCP Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368
msgid "TLS Hostname Verify" msgid "TLS Hostname Verify"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:394 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:387
msgid "TLS SNI name" msgid "TLS SNI name"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:413 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:406
msgid "TLS SPKI Pinning" msgid "TLS SPKI Pinning"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "TTL for all domain result." msgid "TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:462 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:455
msgid "Technical Support" msgid "Technical Support"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:308
msgid "Upstream Servers" msgid "Upstream Servers"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:325 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309
msgid "" msgid ""
"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS "
"servers, including multiple foreign DNS servers." "servers, including multiple foreign DNS servers."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:407
msgid "" msgid ""
"Used to verify the validity of the TLS server, The value is Base64 encoded " "Used to verify the validity of the TLS server, The value is Base64 encoded "
"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not "
"verified." "verified."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346
msgid "https" msgid "https"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "ip" msgid "ip"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:461
msgid "none"
msgstr "kein"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "open website" msgid "open website"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "port" msgid "port"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293
msgid "smartdns custom settings" msgid "smartdns custom settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:360 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:344
msgid "tcp" msgid "tcp"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:345
msgid "tls" msgid "tls"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "type" msgid "type"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:359 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343
msgid "udp" msgid "udp"
msgstr "" msgstr ""
#~ msgid "none"
#~ msgstr "kein"

View file

@ -13,20 +13,20 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8-dev\n" "X-Generator: Weblate 4.8-dev\n"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:418
msgid "Additional Args for upstream dns servers" msgid "Additional Args for upstream dns servers"
msgstr "Args adicionales para servidores DNS aguas arriba" msgstr "Args adicionales para servidores DNS aguas arriba"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:417
msgid "Additional Server Args" msgid "Additional Server Args"
msgstr "Args adicionales del servidor" msgstr "Args adicionales del servidor"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:331 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:315
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configuración avanzada" msgstr "Configuración avanzada"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:170
msgid "" msgid ""
"Attempts to serve old responses from cache with a TTL of 0 in the response " "Attempts to serve old responses from cache with a TTL of 0 in the response "
"without waiting for the actual resolution to finish." "without waiting for the actual resolution to finish."
@ -34,15 +34,23 @@ msgstr ""
"Intenta servir respuestas antiguas de la memoria caché con un TTL de 0 en la " "Intenta servir respuestas antiguas de la memoria caché con un TTL de 0 en la "
"respuesta sin esperar a que finalice la resolución real." "respuesta sin esperar a que finalice la resolución real."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically Set Dnsmasq"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically set as upstream of dnsmasq when port changes."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "Cache Size" msgid "Cache Size"
msgstr "Tamaño del caché" msgstr "Tamaño del caché"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:115
msgid "Collecting data ..." msgid "Collecting data ..."
msgstr "Recolectando datos..." msgstr "Recolectando datos..."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:445
msgid "" msgid ""
"Configure IP blacklists that will be filtered from the results of specific " "Configure IP blacklists that will be filtered from the results of specific "
"DNS server." "DNS server."
@ -50,133 +58,147 @@ msgstr ""
"Configure listas negras de IP que se filtrarán de los resultados de un " "Configure listas negras de IP que se filtrarán de los resultados de un "
"servidor DNS específico." "servidor DNS específico."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:126
msgid "Custom Settings" msgid "Custom Settings"
msgstr "Configuraciones personalizadas" msgstr "Configuraciones personalizadas"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:340 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324
msgid "DNS Server Name" msgid "DNS Server Name"
msgstr "Nombre del servidor DNS" msgstr "Nombre del servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "" msgid ""
"DNS Server group belongs to, used with nameserver, such as office, home." "DNS Server group belongs to, used with nameserver, such as office, home."
msgstr "" msgstr ""
"El grupo del servidor DNS pertenece a, usado con el servidor de nombres, " "El grupo del servidor DNS pertenece a, usado con el servidor de nombres, "
"como la oficina, el hogar." "como la oficina, el hogar."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "DNS Server ip" msgid "DNS Server ip"
msgstr "IP del servidor DNS" msgstr "IP del servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "DNS Server port" msgid "DNS Server port"
msgstr "Puerto del servidor DNS" msgstr "Puerto del servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "DNS Server type" msgid "DNS Server type"
msgstr "Tipo de servidor DNS" msgstr "Tipo de servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "DNS domain result cache size" msgid "DNS domain result cache size"
msgstr "Tamaño del caché de resultados del dominio DNS" msgstr "Tamaño del caché de resultados del dominio DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:74
msgid "Dnsmasq Forwared To Smartdns Failure" msgid "Dnsmasq Forwared To Smartdns Failure"
msgstr "Fallo en el reenvío de dnsmasq a SmartDNS" msgstr "Fallo en el reenvío de dnsmasq a SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:264 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:379
msgid "Do not check certificate."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:248
msgid "Do not check speed." msgid "Do not check speed."
msgstr "No verifique la velocidad." msgstr "No verifique la velocidad."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Domain Address" msgid "Domain Address"
msgstr "Dirección de dominio" msgstr "Dirección de dominio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "Domain TTL" msgid "Domain TTL"
msgstr "TTL del dominio" msgstr "TTL del dominio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:233 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211
msgid "Domain TTL Max" msgid "Domain TTL Max"
msgstr "TTL Máx. del dominio" msgstr "TTL Máx. del dominio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:203
msgid "Domain TTL Min" msgid "Domain TTL Min"
msgstr "TTL Mín. del dominio" msgstr "TTL Mín. del dominio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:195 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:163
msgid "Domain prefetch" msgid "Domain prefetch"
msgstr "Prebúsqueda de dominios" msgstr "Prebúsqueda de dominios"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:476 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:469
msgid "Donate" msgid "Donate"
msgstr "Donar" msgstr "Donar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:475 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "Donate to smartdns" msgid "Donate to smartdns"
msgstr "Donar a smartdns" msgstr "Donar a smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157
msgid "Dual-stack IP Selection" msgid "Dual-stack IP Selection"
msgstr "Selección de IP de doble pila" msgstr "Selección de IP de doble pila"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:238 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:222
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:334 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:318
msgid "Enable" msgid "Enable"
msgstr "Activar" msgstr "Activar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:190 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158
msgid "Enable IP selection between IPV4 and IPV6" msgid "Enable IP selection between IPV4 and IPV6"
msgstr "Activar la selección de IP entre IPv4 e IPv6" msgstr "Activar la selección de IP entre IPv4 e IPv6"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "Enable IPV6 DNS Server" msgid "Enable IPV6 DNS Server"
msgstr "Activar servidor DNS IPv6" msgstr "Activar servidor DNS IPv6"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "Enable TCP DNS Server" msgid "Enable TCP DNS Server"
msgstr "Activar el servidor DNS TCP" msgstr "Activar el servidor DNS TCP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:164
msgid "Enable domain prefetch, accelerate domain response speed." msgid "Enable domain prefetch, accelerate domain response speed."
msgstr "" msgstr ""
"Active la captación previa del dominio, acelere la velocidad de respuesta " "Active la captación previa del dominio, acelere la velocidad de respuesta "
"del dominio." "del dominio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:239 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:223
msgid "Enable or disable second DNS server." msgid "Enable or disable second DNS server."
msgstr "Activar o desactivar el segundo servidor DNS." msgstr "Activar o desactivar el segundo servidor DNS."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
msgid "Enable or disable smartdns server" msgid "Enable or disable smartdns server"
msgstr "Activar o desactivar el servidor smartdns" msgstr "Activar o desactivar el servidor smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362
msgid "Filtering IP with blacklist" msgid "Filtering IP with blacklist"
msgstr "Filtrado de IP con lista negra" msgstr "Filtrado de IP con lista negra"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA" msgid "Force AAAA SOA"
msgstr "Forzar AAAA SOA" msgstr "Forzar AAAA SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA." msgid "Force AAAA SOA."
msgstr "Forzar AAAA SOA." msgstr "Forzar AAAA SOA."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:156 msgid "Force HTTPS SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:330 msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
msgid "Force HTTPS SOA."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:124
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:314
msgid "General Settings" msgid "General Settings"
msgstr "Configuración general" msgstr "Configuración general"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:319 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303
msgid "Generate Coredump" msgid "Generate Coredump"
msgstr "Generar Coredump" msgstr "Generar Coredump"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:320 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304
msgid "" msgid ""
"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" "Generate Coredump file when smartdns crash, coredump file is located at /tmp/"
"smartdns.xxx.core." "smartdns.xxx.core."
@ -188,104 +210,104 @@ msgstr ""
msgid "Grant access to LuCI app smartdns" msgid "Grant access to LuCI app smartdns"
msgstr "Conceder acceso a la aplicación LuCI smartdns" msgstr "Conceder acceso a la aplicación LuCI smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:404 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397
msgid "HTTP Host" msgid "HTTP Host"
msgstr "Host HTTP" msgstr "Host HTTP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "IP Blacklist" msgid "IP Blacklist"
msgstr "Lista negra de IP" msgstr "Lista negra de IP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361
msgid "IP Blacklist Filtering" msgid "IP Blacklist Filtering"
msgstr "Filtrado de la lista negra de IP" msgstr "Filtrado de la lista negra de IP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:104 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "IPV4 53 Port Redirect Failure"
msgstr "Error de reenvío de puerto IPv4 53"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:110
msgid "IPV6 53 Port Redirect Failure"
msgstr "Error de reenvío de puerto IPv6 53"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "IPV6 Server" msgid "IPV6 Server"
msgstr "Servidor IPv6" msgstr "Servidor IPv6"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:463 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:456
msgid "If you like this software, please buy me a cup of coffee." msgid "If you like this software, please buy me a cup of coffee."
msgstr "Si le gusta este software, cómpreme una taza de café." msgstr "Si le gusta este software, cómpreme una taza de café."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:139
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "Local Port" msgid "Local Port"
msgstr "Puerto local" msgstr "Puerto local"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:212
msgid "Maximum TTL for all domain result." msgid "Maximum TTL for all domain result."
msgstr "TTL máximo para todos los resultados de dominio." msgstr "TTL máximo para todos los resultados de dominio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:225 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:204
msgid "Minimum TTL for all domain result." msgid "Minimum TTL for all domain result."
msgstr "TTL mínimo para todos los resultados de dominio." msgstr "TTL mínimo para todos los resultados de dominio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:87 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:65
#, fuzzy #, fuzzy
msgid "NOT RUNNING" msgid "NOT RUNNING"
msgstr "NO SE ESTÁ EJECUTANDO" msgstr "NO SE ESTÁ EJECUTANDO"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:257 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378
msgid "No check certificate"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241
msgid "Query DNS through specific dns server group, such as office, home." msgid "Query DNS through specific dns server group, such as office, home."
msgstr "" msgstr ""
"Consulta DNS a través de un grupo de servidores dns específico, como " "Consulta DNS a través de un grupo de servidores dns específico, como "
"oficina, hogar." "oficina, hogar."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:85 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:63
msgid "RUNNING" msgid "RUNNING"
msgstr "EJECUTANDO" msgstr "EJECUTANDO"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216
msgid "Redirect" msgid "Reply Domain TTL Max"
msgstr "Redirigir" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:217
msgid "Redirect 53 port to SmartDNS" msgid "Reply maximum TTL for all domain result."
msgstr "Redirigir el puerto 53 a SmartDNS" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Run as dnsmasq upstream server" msgid "Resolve Local Hostnames"
msgstr "Ejecutar como servidor dnsmasq aguas arriba" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Resolve local hostnames by reading Dnsmasq lease file."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:125
msgid "Second Server Settings" msgid "Second Server Settings"
msgstr "Segunda configuración del servidor" msgstr "Segunda configuración del servidor"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:201 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169
msgid "Serve expired" msgid "Serve expired"
msgstr "Servir expirado" msgstr "Servir expirado"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:256 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "Server Group" msgid "Server Group"
msgstr "Grupo de servidores" msgstr "Grupo de servidores"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Server Name" msgid "Server Name"
msgstr "Nombre del servidor" msgstr "Nombre del servidor"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Set Specific domain ip address." msgid "Set Specific domain ip address."
msgstr "Establecer dirección IP de dominio específico." msgstr "Establecer dirección IP de dominio específico."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "Set Specific ip blacklist." msgid "Set Specific ip blacklist."
msgstr "Establecer lista negra de IP específica." msgstr "Establecer lista negra de IP específica."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:385 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:369
msgid "Set TLS hostname to verify." msgid "Set TLS hostname to verify."
msgstr "Establezca el nombre de host TLS para verificar." msgstr "Establezca el nombre de host TLS para verificar."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:405 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:398
msgid "" msgid ""
"Set the HTTP host used for the query. Use this parameter when the host of " "Set the HTTP host used for the query. Use this parameter when the host of "
"the URL address is an IP address." "the URL address is an IP address."
@ -293,76 +315,76 @@ msgstr ""
"Establezca el host HTTP utilizado para la consulta. Use este parámetro " "Establezca el host HTTP utilizado para la consulta. Use este parámetro "
"cuando el host de la dirección URL sea una dirección IP." "cuando el host de la dirección URL sea una dirección IP."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:395 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:388
msgid "Sets the server name indication for query." msgid "Sets the server name indication for query."
msgstr "Establece la indicación del nombre del servidor para la consulta." msgstr "Establece la indicación del nombre del servidor para la consulta."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
msgid "Settings" msgid "Settings"
msgstr "Configuraciones" msgstr "Configuraciones"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:269 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253
msgid "Skip Address Rules" msgid "Skip Address Rules"
msgstr "Omitir reglas de dirección" msgstr "Omitir reglas de dirección"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache" msgid "Skip Cache"
msgstr "Omitir caché" msgstr "Omitir caché"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache." msgid "Skip Cache."
msgstr "Omitir caché." msgstr "Omitir caché."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:292 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276
msgid "Skip Dualstack Selection" msgid "Skip Dualstack Selection"
msgstr "Omitir selección de pila doble" msgstr "Omitir selección de pila doble"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277
msgid "Skip Dualstack Selection." msgid "Skip Dualstack Selection."
msgstr "Omitir selección de pila doble." msgstr "Omitir selección de pila doble."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:281 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:265
msgid "Skip Ipset Rule" msgid "Skip Ipset Rule"
msgstr "Omitir regla de Ipset" msgstr "Omitir regla de Ipset"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:275 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:259
msgid "Skip Nameserver Rule" msgid "Skip Nameserver Rule"
msgstr "Omitir regla de servidor de nombres" msgstr "Omitir regla de servidor de nombres"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:271
msgid "Skip SOA Address Rule" msgid "Skip SOA Address Rule"
msgstr "Omitir regla de dirección SOA" msgstr "Omitir regla de dirección SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:288 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
msgid "Skip SOA address rules." msgid "Skip SOA address rules."
msgstr "Omita las reglas de dirección SOA." msgstr "Omita las reglas de dirección SOA."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:263 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247
msgid "Skip Speed Check" msgid "Skip Speed Check"
msgstr "Omitir comprobación de velocidad" msgstr "Omitir comprobación de velocidad"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:270 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:254
msgid "Skip address rules." msgid "Skip address rules."
msgstr "Omitir reglas de dirección." msgstr "Omitir reglas de dirección."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:266
msgid "Skip ipset rules." msgid "Skip ipset rules."
msgstr "Omitir las reglas de ipset." msgstr "Omitir las reglas de ipset."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:260
msgid "Skip nameserver rules." msgid "Skip nameserver rules."
msgstr "Omitir las reglas del servidor de nombres." msgstr "Omitir las reglas del servidor de nombres."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:129 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:91
#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3
msgid "SmartDNS" msgid "SmartDNS"
msgstr "SmartDNS" msgstr "SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:130 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:92
msgid "SmartDNS Server" msgid "SmartDNS Server"
msgstr "Servidor SmartDNS" msgstr "Servidor SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:93
msgid "" msgid ""
"SmartDNS is a local high-performance DNS server, supports finding fastest " "SmartDNS is a local high-performance DNS server, supports finding fastest "
"IP, supports ad filtering, and supports avoiding DNS poisoning." "IP, supports ad filtering, and supports avoiding DNS poisoning."
@ -371,24 +393,25 @@ msgstr ""
"la IP más rápida, admite el filtrado de anuncios y evita el envenenamiento " "la IP más rápida, admite el filtrado de anuncios y evita el envenenamiento "
"de DNS." "de DNS."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:467 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:460
msgid "SmartDNS official website" msgid "SmartDNS official website"
msgstr "Sitio web oficial de SmartDNS" msgstr "Sitio web oficial de SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "SmartDNS redirect mode"
msgstr "Modo de redireccionamiento SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244
msgid "Smartdns local server port" msgid "Smartdns local server port"
msgstr "Puerto del servidor local Smartdns" msgstr "Puerto del servidor local Smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:140
msgid ""
"Smartdns local server port, smartdns will be automatically set as main dns "
"when the port is 53."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Smartdns server name" msgid "Smartdns server name"
msgstr "Nombre del servidor de Smartdns" msgstr "Nombre del servidor de Smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:439 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:432
msgid "" msgid ""
"Specify an IP address to return for any host in the given domains, Queries " "Specify an IP address to return for any host in the given domains, Queries "
"in the domains are never forwarded and always replied to with the specified " "in the domains are never forwarded and always replied to with the specified "
@ -398,36 +421,36 @@ msgstr ""
"dominios dados, las consultas en los dominios nunca se reenvían y siempre se " "dominios dados, las consultas en los dominios nunca se reenvían y siempre se "
"responden con la dirección IP especificada que puede ser IPv4 o IPv6." "responden con la dirección IP especificada que puede ser IPv4 o IPv6."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "TCP Server" msgid "TCP Server"
msgstr "Servidor TCP" msgstr "Servidor TCP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368
msgid "TLS Hostname Verify" msgid "TLS Hostname Verify"
msgstr "Verificar nombre de host TLS" msgstr "Verificar nombre de host TLS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:394 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:387
msgid "TLS SNI name" msgid "TLS SNI name"
msgstr "Nombre SNI de TLS" msgstr "Nombre SNI de TLS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:413 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:406
msgid "TLS SPKI Pinning" msgid "TLS SPKI Pinning"
msgstr "TLS SPKI Anclado" msgstr "TLS SPKI Anclado"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "TTL for all domain result." msgid "TTL for all domain result."
msgstr "TTL para todos los resultados de dominio." msgstr "TTL para todos los resultados de dominio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:462 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:455
msgid "Technical Support" msgid "Technical Support"
msgstr "Soporte técnico" msgstr "Soporte técnico"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:308
msgid "Upstream Servers" msgid "Upstream Servers"
msgstr "Servidores aguas arriba" msgstr "Servidores aguas arriba"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:325 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309
msgid "" msgid ""
"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS "
"servers, including multiple foreign DNS servers." "servers, including multiple foreign DNS servers."
@ -435,7 +458,7 @@ msgstr ""
"Servidores aguas arriba, soporte UDP, protocolo TCP. Configure varios " "Servidores aguas arriba, soporte UDP, protocolo TCP. Configure varios "
"servidores DNS, incluidos varios servidores DNS externos." "servidores DNS, incluidos varios servidores DNS externos."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:407
msgid "" msgid ""
"Used to verify the validity of the TLS server, The value is Base64 encoded " "Used to verify the validity of the TLS server, The value is Base64 encoded "
"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not "
@ -445,46 +468,63 @@ msgstr ""
"digital SPKI codificada en Base64, y se deja en blanco para indicar que no " "digital SPKI codificada en Base64, y se deja en blanco para indicar que no "
"se verifica la validez de TLS." "se verifica la validez de TLS."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346
msgid "https" msgid "https"
msgstr "https" msgstr "https"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "ip" msgid "ip"
msgstr "ip" msgstr "ip"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:461
msgid "none"
msgstr "ninguno"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "open website" msgid "open website"
msgstr "abrir sitio web" msgstr "abrir sitio web"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "port" msgid "port"
msgstr "puerto" msgstr "puerto"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293
msgid "smartdns custom settings" msgid "smartdns custom settings"
msgstr "configuraciones personalizadas de smartdns" msgstr "configuraciones personalizadas de smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:360 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:344
msgid "tcp" msgid "tcp"
msgstr "tcp" msgstr "tcp"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:345
msgid "tls" msgid "tls"
msgstr "tls" msgstr "tls"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "type" msgid "type"
msgstr "tipo" msgstr "tipo"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:359 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343
msgid "udp" msgid "udp"
msgstr "udp" msgstr "udp"
#~ msgid "IPV4 53 Port Redirect Failure"
#~ msgstr "Error de reenvío de puerto IPv4 53"
#~ msgid "IPV6 53 Port Redirect Failure"
#~ msgstr "Error de reenvío de puerto IPv6 53"
#~ msgid "Redirect"
#~ msgstr "Redirigir"
#~ msgid "Redirect 53 port to SmartDNS"
#~ msgstr "Redirigir el puerto 53 a SmartDNS"
#~ msgid "Run as dnsmasq upstream server"
#~ msgstr "Ejecutar como servidor dnsmasq aguas arriba"
#~ msgid "SmartDNS redirect mode"
#~ msgstr "Modo de redireccionamiento SmartDNS"
#~ msgid "none"
#~ msgstr "ninguno"
#~ msgid "DNS Server group belongs to," #~ msgid "DNS Server group belongs to,"
#~ msgstr "El grupo del servidor DNS pertenece a," #~ msgstr "El grupo del servidor DNS pertenece a,"

View file

@ -10,20 +10,20 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.7.2-dev\n" "X-Generator: Weblate 4.7.2-dev\n"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:418
msgid "Additional Args for upstream dns servers" msgid "Additional Args for upstream dns servers"
msgstr "Args adicionais para servidores dns upstream" msgstr "Args adicionais para servidores dns upstream"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:417
msgid "Additional Server Args" msgid "Additional Server Args"
msgstr "Args Adicionais Sobre o Servidor" msgstr "Args Adicionais Sobre o Servidor"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:331 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:315
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configurações Avançadas" msgstr "Configurações Avançadas"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:170
msgid "" msgid ""
"Attempts to serve old responses from cache with a TTL of 0 in the response " "Attempts to serve old responses from cache with a TTL of 0 in the response "
"without waiting for the actual resolution to finish." "without waiting for the actual resolution to finish."
@ -31,15 +31,23 @@ msgstr ""
"Tentativas de servir respostas antigas do cache com um TTL de 0 na resposta " "Tentativas de servir respostas antigas do cache com um TTL de 0 na resposta "
"sem esperar o término da resolução real." "sem esperar o término da resolução real."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically Set Dnsmasq"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically set as upstream of dnsmasq when port changes."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "Cache Size" msgid "Cache Size"
msgstr "Tamanho do Cache" msgstr "Tamanho do Cache"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:115
msgid "Collecting data ..." msgid "Collecting data ..."
msgstr "Coletando dados ..." msgstr "Coletando dados ..."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:445
msgid "" msgid ""
"Configure IP blacklists that will be filtered from the results of specific " "Configure IP blacklists that will be filtered from the results of specific "
"DNS server." "DNS server."
@ -47,133 +55,147 @@ msgstr ""
"Configure as listas negras dos IP que serão filtradas a partir dos " "Configure as listas negras dos IP que serão filtradas a partir dos "
"resultados de um servidor DNS específico." "resultados de um servidor DNS específico."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:126
msgid "Custom Settings" msgid "Custom Settings"
msgstr "Configurações Personalizadas" msgstr "Configurações Personalizadas"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:340 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324
msgid "DNS Server Name" msgid "DNS Server Name"
msgstr "Nome do Servidor DNS" msgstr "Nome do Servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "" msgid ""
"DNS Server group belongs to, used with nameserver, such as office, home." "DNS Server group belongs to, used with nameserver, such as office, home."
msgstr "" msgstr ""
"O grupo do Servidor DNS pertence a, usado em conjunto com o nameserver (nome " "O grupo do Servidor DNS pertence a, usado em conjunto com o nameserver (nome "
"do servidor), assim como em office, em casa." "do servidor), assim como em office, em casa."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "DNS Server ip" msgid "DNS Server ip"
msgstr "Endereço IP do Servidor DNS" msgstr "Endereço IP do Servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "DNS Server port" msgid "DNS Server port"
msgstr "Porta do Servidor DNS" msgstr "Porta do Servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "DNS Server type" msgid "DNS Server type"
msgstr "Tipo do Servidor DNS" msgstr "Tipo do Servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "DNS domain result cache size" msgid "DNS domain result cache size"
msgstr "Tamanho do cache para o resultado do domínio DNS" msgstr "Tamanho do cache para o resultado do domínio DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:74
msgid "Dnsmasq Forwared To Smartdns Failure" msgid "Dnsmasq Forwared To Smartdns Failure"
msgstr "Encaminhamento do Dnsmasq para Falha do Smartdns" msgstr "Encaminhamento do Dnsmasq para Falha do Smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:264 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:379
msgid "Do not check certificate."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:248
msgid "Do not check speed." msgid "Do not check speed."
msgstr "Não verifique a velocidade." msgstr "Não verifique a velocidade."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Domain Address" msgid "Domain Address"
msgstr "Endereço do domínio" msgstr "Endereço do domínio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "Domain TTL" msgid "Domain TTL"
msgstr "TTL do domínio" msgstr "TTL do domínio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:233 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211
msgid "Domain TTL Max" msgid "Domain TTL Max"
msgstr "TTL Max. do Domínio" msgstr "TTL Max. do Domínio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:203
msgid "Domain TTL Min" msgid "Domain TTL Min"
msgstr "TTL Min. do Domínio" msgstr "TTL Min. do Domínio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:195 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:163
msgid "Domain prefetch" msgid "Domain prefetch"
msgstr "Pré-aquisição do Domínio" msgstr "Pré-aquisição do Domínio"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:476 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:469
msgid "Donate" msgid "Donate"
msgstr "Doe" msgstr "Doe"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:475 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "Donate to smartdns" msgid "Donate to smartdns"
msgstr "Doar para o smartdns" msgstr "Doar para o smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157
msgid "Dual-stack IP Selection" msgid "Dual-stack IP Selection"
msgstr "Seleção IP com pilha dupla" msgstr "Seleção IP com pilha dupla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:238 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:222
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:334 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:318
msgid "Enable" msgid "Enable"
msgstr "Ativar" msgstr "Ativar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:190 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158
msgid "Enable IP selection between IPV4 and IPV6" msgid "Enable IP selection between IPV4 and IPV6"
msgstr "Ative a seleção do IP entre o IPV4 e o IPV6" msgstr "Ative a seleção do IP entre o IPV4 e o IPV6"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "Enable IPV6 DNS Server" msgid "Enable IPV6 DNS Server"
msgstr "Ativar o Servidor IPV6 do DNS" msgstr "Ativar o Servidor IPV6 do DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "Enable TCP DNS Server" msgid "Enable TCP DNS Server"
msgstr "Ative o TCP do servidor DNS" msgstr "Ative o TCP do servidor DNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:164
msgid "Enable domain prefetch, accelerate domain response speed." msgid "Enable domain prefetch, accelerate domain response speed."
msgstr "" msgstr ""
"Ative a pré-aquisição do domínio, acelera a velocidade de resposta do " "Ative a pré-aquisição do domínio, acelera a velocidade de resposta do "
"domínio." "domínio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:239 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:223
msgid "Enable or disable second DNS server." msgid "Enable or disable second DNS server."
msgstr "Ative ou desative o segundo servidor DNS." msgstr "Ative ou desative o segundo servidor DNS."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
msgid "Enable or disable smartdns server" msgid "Enable or disable smartdns server"
msgstr "Ative ou desative o servidor smartdns" msgstr "Ative ou desative o servidor smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362
msgid "Filtering IP with blacklist" msgid "Filtering IP with blacklist"
msgstr "Filtrando o IP com um alista negra" msgstr "Filtrando o IP com um alista negra"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA" msgid "Force AAAA SOA"
msgstr "Impor AAAA SOA" msgstr "Impor AAAA SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA." msgid "Force AAAA SOA."
msgstr "Impor AAAA SOA." msgstr "Impor AAAA SOA."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:156 msgid "Force HTTPS SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:330 msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
msgid "Force HTTPS SOA."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:124
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:314
msgid "General Settings" msgid "General Settings"
msgstr "Configurações gerais" msgstr "Configurações gerais"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:319 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303
msgid "Generate Coredump" msgid "Generate Coredump"
msgstr "Gerar Coredump" msgstr "Gerar Coredump"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:320 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304
msgid "" msgid ""
"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" "Generate Coredump file when smartdns crash, coredump file is located at /tmp/"
"smartdns.xxx.core." "smartdns.xxx.core."
@ -185,103 +207,103 @@ msgstr ""
msgid "Grant access to LuCI app smartdns" msgid "Grant access to LuCI app smartdns"
msgstr "Conceda acesso ao LuCI app smartdns" msgstr "Conceda acesso ao LuCI app smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:404 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397
msgid "HTTP Host" msgid "HTTP Host"
msgstr "Host HTTP" msgstr "Host HTTP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "IP Blacklist" msgid "IP Blacklist"
msgstr "Lista negra de IPs" msgstr "Lista negra de IPs"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361
msgid "IP Blacklist Filtering" msgid "IP Blacklist Filtering"
msgstr "Filtragem da Lista Negra dos IPs" msgstr "Filtragem da Lista Negra dos IPs"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:104 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "IPV4 53 Port Redirect Failure"
msgstr "Falha no Redirecionamento da Porta IPV4 53"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:110
msgid "IPV6 53 Port Redirect Failure"
msgstr "Falha no Redirecionamento da Porta IPV6 53"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "IPV6 Server" msgid "IPV6 Server"
msgstr "Servidor IPV6" msgstr "Servidor IPV6"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:463 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:456
msgid "If you like this software, please buy me a cup of coffee." msgid "If you like this software, please buy me a cup of coffee."
msgstr "Caso goste deste software, por favor, me pague uma xícara de café." msgstr "Caso goste deste software, por favor, me pague uma xícara de café."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:139
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "Local Port" msgid "Local Port"
msgstr "Porta Local" msgstr "Porta Local"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:212
msgid "Maximum TTL for all domain result." msgid "Maximum TTL for all domain result."
msgstr "TTL máximo para todos os resultados do domínio." msgstr "TTL máximo para todos os resultados do domínio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:225 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:204
msgid "Minimum TTL for all domain result." msgid "Minimum TTL for all domain result."
msgstr "TTL mínimo para todos os resultados do domínio." msgstr "TTL mínimo para todos os resultados do domínio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:87 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:65
msgid "NOT RUNNING" msgid "NOT RUNNING"
msgstr "NÃO ESTÁ EM EXECUÇÃO" msgstr "NÃO ESTÁ EM EXECUÇÃO"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:257 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378
msgid "No check certificate"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241
msgid "Query DNS through specific dns server group, such as office, home." msgid "Query DNS through specific dns server group, such as office, home."
msgstr "" msgstr ""
"Consulta o DNS através de um grupo específico de servidores dns, como " "Consulta o DNS através de um grupo específico de servidores dns, como "
"office, casa." "office, casa."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:85 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:63
msgid "RUNNING" msgid "RUNNING"
msgstr "EM EXECUÇÃO" msgstr "EM EXECUÇÃO"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216
msgid "Redirect" msgid "Reply Domain TTL Max"
msgstr "Redirecione" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:217
msgid "Redirect 53 port to SmartDNS" msgid "Reply maximum TTL for all domain result."
msgstr "Redirecionar a porta 53 para o SmartDNS" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Run as dnsmasq upstream server" msgid "Resolve Local Hostnames"
msgstr "Executar como servidor dnsmasq upstream" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Resolve local hostnames by reading Dnsmasq lease file."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:125
msgid "Second Server Settings" msgid "Second Server Settings"
msgstr "Configurações do Segundo Servidor" msgstr "Configurações do Segundo Servidor"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:201 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169
msgid "Serve expired" msgid "Serve expired"
msgstr "O servir expirou" msgstr "O servir expirou"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:256 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "Server Group" msgid "Server Group"
msgstr "Grupo dos Servidores" msgstr "Grupo dos Servidores"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Server Name" msgid "Server Name"
msgstr "Nome do Servidor" msgstr "Nome do Servidor"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Set Specific domain ip address." msgid "Set Specific domain ip address."
msgstr "Defina um endereço IP específico para o domínio." msgstr "Defina um endereço IP específico para o domínio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "Set Specific ip blacklist." msgid "Set Specific ip blacklist."
msgstr "Defina um IP específico para a lista negra." msgstr "Defina um IP específico para a lista negra."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:385 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:369
msgid "Set TLS hostname to verify." msgid "Set TLS hostname to verify."
msgstr "Defina o nome do host TLS para verificar." msgstr "Defina o nome do host TLS para verificar."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:405 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:398
msgid "" msgid ""
"Set the HTTP host used for the query. Use this parameter when the host of " "Set the HTTP host used for the query. Use this parameter when the host of "
"the URL address is an IP address." "the URL address is an IP address."
@ -289,76 +311,76 @@ msgstr ""
"Defina o host HTTP utilizado para a consulta. Use este parâmetro quando o " "Defina o host HTTP utilizado para a consulta. Use este parâmetro quando o "
"host da URL do endereço for um endereço IP." "host da URL do endereço for um endereço IP."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:395 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:388
msgid "Sets the server name indication for query." msgid "Sets the server name indication for query."
msgstr "Define a indicação do nome do servidor para consulta." msgstr "Define a indicação do nome do servidor para consulta."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
msgid "Settings" msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:269 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253
msgid "Skip Address Rules" msgid "Skip Address Rules"
msgstr "Ignora as Regras do Endereço" msgstr "Ignora as Regras do Endereço"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache" msgid "Skip Cache"
msgstr "Ignora a Cache" msgstr "Ignora a Cache"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache." msgid "Skip Cache."
msgstr "Ignora a Cache." msgstr "Ignora a Cache."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:292 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276
msgid "Skip Dualstack Selection" msgid "Skip Dualstack Selection"
msgstr "Ignora a Seleção da Pilha Dupla" msgstr "Ignora a Seleção da Pilha Dupla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277
msgid "Skip Dualstack Selection." msgid "Skip Dualstack Selection."
msgstr "Ignora a Seleção da Pilha Dupla." msgstr "Ignora a Seleção da Pilha Dupla."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:281 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:265
msgid "Skip Ipset Rule" msgid "Skip Ipset Rule"
msgstr "Ignora a Regra Ipset" msgstr "Ignora a Regra Ipset"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:275 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:259
msgid "Skip Nameserver Rule" msgid "Skip Nameserver Rule"
msgstr "Ignora a Regra do Servidor de Nomes" msgstr "Ignora a Regra do Servidor de Nomes"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:271
msgid "Skip SOA Address Rule" msgid "Skip SOA Address Rule"
msgstr "Ignorar a Regra do Endereço SOA" msgstr "Ignorar a Regra do Endereço SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:288 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
msgid "Skip SOA address rules." msgid "Skip SOA address rules."
msgstr "Ignorar a Regra do Endereço SOA." msgstr "Ignorar a Regra do Endereço SOA."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:263 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247
msgid "Skip Speed Check" msgid "Skip Speed Check"
msgstr "Ignorar a Verificação da Velocidade" msgstr "Ignorar a Verificação da Velocidade"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:270 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:254
msgid "Skip address rules." msgid "Skip address rules."
msgstr "Ignora as Regras do Endereço." msgstr "Ignora as Regras do Endereço."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:266
msgid "Skip ipset rules." msgid "Skip ipset rules."
msgstr "Ignore as regras do ipset." msgstr "Ignore as regras do ipset."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:260
msgid "Skip nameserver rules." msgid "Skip nameserver rules."
msgstr "Ignora a regra do servidor de nomes." msgstr "Ignora a regra do servidor de nomes."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:129 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:91
#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3
msgid "SmartDNS" msgid "SmartDNS"
msgstr "SmartDNS" msgstr "SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:130 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:92
msgid "SmartDNS Server" msgid "SmartDNS Server"
msgstr "Servidor SmartDNS" msgstr "Servidor SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:93
msgid "" msgid ""
"SmartDNS is a local high-performance DNS server, supports finding fastest " "SmartDNS is a local high-performance DNS server, supports finding fastest "
"IP, supports ad filtering, and supports avoiding DNS poisoning." "IP, supports ad filtering, and supports avoiding DNS poisoning."
@ -367,24 +389,25 @@ msgstr ""
"localização rápida do IP, suporta filtragem de anúncios e previne o " "localização rápida do IP, suporta filtragem de anúncios e previne o "
"envenenamento do DNS." "envenenamento do DNS."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:467 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:460
msgid "SmartDNS official website" msgid "SmartDNS official website"
msgstr "Site oficial do SmartDNS" msgstr "Site oficial do SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "SmartDNS redirect mode"
msgstr "SmartDNS, modo de redirecionamento"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244
msgid "Smartdns local server port" msgid "Smartdns local server port"
msgstr "Porta do servidor local Smartdns" msgstr "Porta do servidor local Smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:140
msgid ""
"Smartdns local server port, smartdns will be automatically set as main dns "
"when the port is 53."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Smartdns server name" msgid "Smartdns server name"
msgstr "Nome do servidor Smartdns" msgstr "Nome do servidor Smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:439 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:432
msgid "" msgid ""
"Specify an IP address to return for any host in the given domains, Queries " "Specify an IP address to return for any host in the given domains, Queries "
"in the domains are never forwarded and always replied to with the specified " "in the domains are never forwarded and always replied to with the specified "
@ -395,36 +418,36 @@ msgstr ""
"respondidas de forma especificada com o endereço IP que tanto pode ser IPv4 " "respondidas de forma especificada com o endereço IP que tanto pode ser IPv4 "
"ou IPv6." "ou IPv6."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "TCP Server" msgid "TCP Server"
msgstr "Servidor TCP" msgstr "Servidor TCP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368
msgid "TLS Hostname Verify" msgid "TLS Hostname Verify"
msgstr "Verificar o Nome do Host TLS" msgstr "Verificar o Nome do Host TLS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:394 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:387
msgid "TLS SNI name" msgid "TLS SNI name"
msgstr "Nome TLS SNI" msgstr "Nome TLS SNI"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:413 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:406
msgid "TLS SPKI Pinning" msgid "TLS SPKI Pinning"
msgstr "Fixação TLS SPKI" msgstr "Fixação TLS SPKI"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "TTL for all domain result." msgid "TTL for all domain result."
msgstr "O TTL para todos os resultados do domínio." msgstr "O TTL para todos os resultados do domínio."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:462 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:455
msgid "Technical Support" msgid "Technical Support"
msgstr "Suporte Técnico" msgstr "Suporte Técnico"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:308
msgid "Upstream Servers" msgid "Upstream Servers"
msgstr "Servidores upstream" msgstr "Servidores upstream"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:325 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309
msgid "" msgid ""
"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS "
"servers, including multiple foreign DNS servers." "servers, including multiple foreign DNS servers."
@ -432,7 +455,7 @@ msgstr ""
"Servidores upstream, suporte UDP, protocolo TCP. Configure os vários " "Servidores upstream, suporte UDP, protocolo TCP. Configure os vários "
"servidores DNS, incluindo vários servidores DNS externos." "servidores DNS, incluindo vários servidores DNS externos."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:407
msgid "" msgid ""
"Used to verify the validity of the TLS server, The value is Base64 encoded " "Used to verify the validity of the TLS server, The value is Base64 encoded "
"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not "
@ -442,42 +465,59 @@ msgstr ""
"digital SPKI codificada com base64, deixando em branco para indicar que a " "digital SPKI codificada com base64, deixando em branco para indicar que a "
"validade do TLS não será verificada." "validade do TLS não será verificada."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346
msgid "https" msgid "https"
msgstr "https" msgstr "https"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "ip" msgid "ip"
msgstr "IP" msgstr "IP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:461
msgid "none"
msgstr "nenhum"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "open website" msgid "open website"
msgstr "abrir o website" msgstr "abrir o website"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "port" msgid "port"
msgstr "porta" msgstr "porta"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293
msgid "smartdns custom settings" msgid "smartdns custom settings"
msgstr "configurações personalizadas do smartdns" msgstr "configurações personalizadas do smartdns"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:360 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:344
msgid "tcp" msgid "tcp"
msgstr "tcp" msgstr "tcp"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:345
msgid "tls" msgid "tls"
msgstr "tls" msgstr "tls"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "type" msgid "type"
msgstr "tipo" msgstr "tipo"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:359 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343
msgid "udp" msgid "udp"
msgstr "udp" msgstr "udp"
#~ msgid "IPV4 53 Port Redirect Failure"
#~ msgstr "Falha no Redirecionamento da Porta IPV4 53"
#~ msgid "IPV6 53 Port Redirect Failure"
#~ msgstr "Falha no Redirecionamento da Porta IPV6 53"
#~ msgid "Redirect"
#~ msgstr "Redirecione"
#~ msgid "Redirect 53 port to SmartDNS"
#~ msgstr "Redirecionar a porta 53 para o SmartDNS"
#~ msgid "Run as dnsmasq upstream server"
#~ msgstr "Executar como servidor dnsmasq upstream"
#~ msgid "SmartDNS redirect mode"
#~ msgstr "SmartDNS, modo de redirecionamento"
#~ msgid "none"
#~ msgstr "nenhum"

View file

@ -1,162 +1,184 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:418
msgid "Additional Args for upstream dns servers" msgid "Additional Args for upstream dns servers"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:417
msgid "Additional Server Args" msgid "Additional Server Args"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:331 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:315
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:170
msgid "" msgid ""
"Attempts to serve old responses from cache with a TTL of 0 in the response " "Attempts to serve old responses from cache with a TTL of 0 in the response "
"without waiting for the actual resolution to finish." "without waiting for the actual resolution to finish."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically Set Dnsmasq"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically set as upstream of dnsmasq when port changes."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "Cache Size" msgid "Cache Size"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:115
msgid "Collecting data ..." msgid "Collecting data ..."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:445
msgid "" msgid ""
"Configure IP blacklists that will be filtered from the results of specific " "Configure IP blacklists that will be filtered from the results of specific "
"DNS server." "DNS server."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:126
msgid "Custom Settings" msgid "Custom Settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:340 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324
msgid "DNS Server Name" msgid "DNS Server Name"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "" msgid ""
"DNS Server group belongs to, used with nameserver, such as office, home." "DNS Server group belongs to, used with nameserver, such as office, home."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "DNS Server ip" msgid "DNS Server ip"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "DNS Server port" msgid "DNS Server port"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "DNS Server type" msgid "DNS Server type"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "DNS domain result cache size" msgid "DNS domain result cache size"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:74
msgid "Dnsmasq Forwared To Smartdns Failure" msgid "Dnsmasq Forwared To Smartdns Failure"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:264 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:379
msgid "Do not check certificate."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:248
msgid "Do not check speed." msgid "Do not check speed."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Domain Address" msgid "Domain Address"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "Domain TTL" msgid "Domain TTL"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:233 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211
msgid "Domain TTL Max" msgid "Domain TTL Max"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:203
msgid "Domain TTL Min" msgid "Domain TTL Min"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:195 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:163
msgid "Domain prefetch" msgid "Domain prefetch"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:476 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:469
msgid "Donate" msgid "Donate"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:475 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "Donate to smartdns" msgid "Donate to smartdns"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157
msgid "Dual-stack IP Selection" msgid "Dual-stack IP Selection"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:238 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:222
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:334 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:318
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:190 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158
msgid "Enable IP selection between IPV4 and IPV6" msgid "Enable IP selection between IPV4 and IPV6"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "Enable IPV6 DNS Server" msgid "Enable IPV6 DNS Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "Enable TCP DNS Server" msgid "Enable TCP DNS Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:164
msgid "Enable domain prefetch, accelerate domain response speed." msgid "Enable domain prefetch, accelerate domain response speed."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:239 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:223
msgid "Enable or disable second DNS server." msgid "Enable or disable second DNS server."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
msgid "Enable or disable smartdns server" msgid "Enable or disable smartdns server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362
msgid "Filtering IP with blacklist" msgid "Filtering IP with blacklist"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA" msgid "Force AAAA SOA"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA." msgid "Force AAAA SOA."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:156 msgid "Force HTTPS SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:330 msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
msgid "Force HTTPS SOA."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:124
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:314
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:319 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303
msgid "Generate Coredump" msgid "Generate Coredump"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:320 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304
msgid "" msgid ""
"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" "Generate Coredump file when smartdns crash, coredump file is located at /tmp/"
"smartdns.xxx.core." "smartdns.xxx.core."
@ -166,283 +188,280 @@ msgstr ""
msgid "Grant access to LuCI app smartdns" msgid "Grant access to LuCI app smartdns"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:404 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397
msgid "HTTP Host" msgid "HTTP Host"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "IP Blacklist" msgid "IP Blacklist"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361
msgid "IP Blacklist Filtering" msgid "IP Blacklist Filtering"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:104 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "IPV4 53 Port Redirect Failure"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:110
msgid "IPV6 53 Port Redirect Failure"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "IPV6 Server" msgid "IPV6 Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:463 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:456
msgid "If you like this software, please buy me a cup of coffee." msgid "If you like this software, please buy me a cup of coffee."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:139
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "Local Port" msgid "Local Port"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:212
msgid "Maximum TTL for all domain result." msgid "Maximum TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:225 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:204
msgid "Minimum TTL for all domain result." msgid "Minimum TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:87 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:65
msgid "NOT RUNNING" msgid "NOT RUNNING"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:257 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378
msgid "No check certificate"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241
msgid "Query DNS through specific dns server group, such as office, home." msgid "Query DNS through specific dns server group, such as office, home."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:85 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:63
msgid "RUNNING" msgid "RUNNING"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216
msgid "Redirect" msgid "Reply Domain TTL Max"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:217
msgid "Redirect 53 port to SmartDNS" msgid "Reply maximum TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Run as dnsmasq upstream server" msgid "Resolve Local Hostnames"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Resolve local hostnames by reading Dnsmasq lease file."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:125
msgid "Second Server Settings" msgid "Second Server Settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:201 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169
msgid "Serve expired" msgid "Serve expired"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:256 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "Server Group" msgid "Server Group"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Server Name" msgid "Server Name"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Set Specific domain ip address." msgid "Set Specific domain ip address."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "Set Specific ip blacklist." msgid "Set Specific ip blacklist."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:385 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:369
msgid "Set TLS hostname to verify." msgid "Set TLS hostname to verify."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:405 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:398
msgid "" msgid ""
"Set the HTTP host used for the query. Use this parameter when the host of " "Set the HTTP host used for the query. Use this parameter when the host of "
"the URL address is an IP address." "the URL address is an IP address."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:395 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:388
msgid "Sets the server name indication for query." msgid "Sets the server name indication for query."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:269 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253
msgid "Skip Address Rules" msgid "Skip Address Rules"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache" msgid "Skip Cache"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache." msgid "Skip Cache."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:292 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276
msgid "Skip Dualstack Selection" msgid "Skip Dualstack Selection"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277
msgid "Skip Dualstack Selection." msgid "Skip Dualstack Selection."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:281 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:265
msgid "Skip Ipset Rule" msgid "Skip Ipset Rule"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:275 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:259
msgid "Skip Nameserver Rule" msgid "Skip Nameserver Rule"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:271
msgid "Skip SOA Address Rule" msgid "Skip SOA Address Rule"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:288 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
msgid "Skip SOA address rules." msgid "Skip SOA address rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:263 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247
msgid "Skip Speed Check" msgid "Skip Speed Check"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:270 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:254
msgid "Skip address rules." msgid "Skip address rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:266
msgid "Skip ipset rules." msgid "Skip ipset rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:260
msgid "Skip nameserver rules." msgid "Skip nameserver rules."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:129 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:91
#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3
msgid "SmartDNS" msgid "SmartDNS"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:130 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:92
msgid "SmartDNS Server" msgid "SmartDNS Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:93
msgid "" msgid ""
"SmartDNS is a local high-performance DNS server, supports finding fastest " "SmartDNS is a local high-performance DNS server, supports finding fastest "
"IP, supports ad filtering, and supports avoiding DNS poisoning." "IP, supports ad filtering, and supports avoiding DNS poisoning."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:467 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:460
msgid "SmartDNS official website" msgid "SmartDNS official website"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "SmartDNS redirect mode"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244
msgid "Smartdns local server port" msgid "Smartdns local server port"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:140
msgid ""
"Smartdns local server port, smartdns will be automatically set as main dns "
"when the port is 53."
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Smartdns server name" msgid "Smartdns server name"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:439 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:432
msgid "" msgid ""
"Specify an IP address to return for any host in the given domains, Queries " "Specify an IP address to return for any host in the given domains, Queries "
"in the domains are never forwarded and always replied to with the specified " "in the domains are never forwarded and always replied to with the specified "
"IP address which may be IPv4 or IPv6." "IP address which may be IPv4 or IPv6."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "TCP Server" msgid "TCP Server"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368
msgid "TLS Hostname Verify" msgid "TLS Hostname Verify"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:394 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:387
msgid "TLS SNI name" msgid "TLS SNI name"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:413 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:406
msgid "TLS SPKI Pinning" msgid "TLS SPKI Pinning"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "TTL for all domain result." msgid "TTL for all domain result."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:462 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:455
msgid "Technical Support" msgid "Technical Support"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:308
msgid "Upstream Servers" msgid "Upstream Servers"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:325 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309
msgid "" msgid ""
"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS "
"servers, including multiple foreign DNS servers." "servers, including multiple foreign DNS servers."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:407
msgid "" msgid ""
"Used to verify the validity of the TLS server, The value is Base64 encoded " "Used to verify the validity of the TLS server, The value is Base64 encoded "
"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not "
"verified." "verified."
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346
msgid "https" msgid "https"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "ip" msgid "ip"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:461
msgid "none"
msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "open website" msgid "open website"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "port" msgid "port"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293
msgid "smartdns custom settings" msgid "smartdns custom settings"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:360 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:344
msgid "tcp" msgid "tcp"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:345
msgid "tls" msgid "tls"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "type" msgid "type"
msgstr "" msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:359 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343
msgid "udp" msgid "udp"
msgstr "" msgstr ""

View file

@ -10,162 +10,184 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.6-dev\n" "X-Generator: Weblate 4.6-dev\n"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:418
msgid "Additional Args for upstream dns servers" msgid "Additional Args for upstream dns servers"
msgstr "额外的上游 DNS 服务器参数" msgstr "额外的上游 DNS 服务器参数"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:417
msgid "Additional Server Args" msgid "Additional Server Args"
msgstr "额外的服务器参数" msgstr "额外的服务器参数"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:331 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:315
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:424
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "高级设置" msgstr "高级设置"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:170
msgid "" msgid ""
"Attempts to serve old responses from cache with a TTL of 0 in the response " "Attempts to serve old responses from cache with a TTL of 0 in the response "
"without waiting for the actual resolution to finish." "without waiting for the actual resolution to finish."
msgstr "查询性能优化有请求时尝试回应TTL为0的过期记录以避免查询等待。" msgstr "查询性能优化有请求时尝试回应TTL为0的过期记录以避免查询等待。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically Set Dnsmasq"
msgstr "自动设置Dnsmasq"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "Automatically set as upstream of dnsmasq when port changes."
msgstr "自动设置为Dnsmasq的上游服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "Cache Size" msgid "Cache Size"
msgstr "缓存大小" msgstr "缓存大小"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:115
msgid "Collecting data ..." msgid "Collecting data ..."
msgstr "正在收集数据..." msgstr "正在收集数据..."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:445
msgid "" msgid ""
"Configure IP blacklists that will be filtered from the results of specific " "Configure IP blacklists that will be filtered from the results of specific "
"DNS server." "DNS server."
msgstr "配置需要从指定域名服务器结果过滤的IP黑名单。" msgstr "配置需要从指定域名服务器结果过滤的IP黑名单。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:126
msgid "Custom Settings" msgid "Custom Settings"
msgstr "自定义设置" msgstr "自定义设置"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:340 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324
msgid "DNS Server Name" msgid "DNS Server Name"
msgstr "DNS服务器名称" msgstr "DNS服务器名称"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "" msgid ""
"DNS Server group belongs to, used with nameserver, such as office, home." "DNS Server group belongs to, used with nameserver, such as office, home."
msgstr "DNS服务器所属组 配合nameserver使用例如officehome。" msgstr "DNS服务器所属组 配合nameserver使用例如officehome。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "DNS Server ip" msgid "DNS Server ip"
msgstr "DNS服务器IP" msgstr "DNS服务器IP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "DNS Server port" msgid "DNS Server port"
msgstr "DNS服务器端口" msgstr "DNS服务器端口"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "DNS Server type" msgid "DNS Server type"
msgstr "协议类型" msgstr "协议类型"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:175
msgid "DNS domain result cache size" msgid "DNS domain result cache size"
msgstr "缓存DNS的结果缓存大小配置零则不缓存" msgstr "缓存DNS的结果缓存大小配置零则不缓存"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:74
msgid "Dnsmasq Forwared To Smartdns Failure" msgid "Dnsmasq Forwared To Smartdns Failure"
msgstr "重定向dnsmasq到smartdns失败" msgstr "重定向dnsmasq到smartdns失败"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:264 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:379
msgid "Do not check certificate."
msgstr "不校验证书的合法性。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:248
msgid "Do not check speed." msgid "Do not check speed."
msgstr "禁用测速。" msgstr "禁用测速。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Domain Address" msgid "Domain Address"
msgstr "域名地址" msgstr "域名地址"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "Domain TTL" msgid "Domain TTL"
msgstr "域名TTL" msgstr "域名TTL"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:233 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211
msgid "Domain TTL Max" msgid "Domain TTL Max"
msgstr "域名TTL最大值" msgstr "域名TTL最大值"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:203
msgid "Domain TTL Min" msgid "Domain TTL Min"
msgstr "域名TTL最小值" msgstr "域名TTL最小值"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:195 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:163
msgid "Domain prefetch" msgid "Domain prefetch"
msgstr "域名预加载" msgstr "域名预加载"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:476 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:469
msgid "Donate" msgid "Donate"
msgstr "捐助" msgstr "捐助"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:475 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "Donate to smartdns" msgid "Donate to smartdns"
msgstr "捐助smartdns项目" msgstr "捐助smartdns项目"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157
msgid "Dual-stack IP Selection" msgid "Dual-stack IP Selection"
msgstr "双栈IP优选" msgstr "双栈IP优选"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:238 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:222
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:334 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:318
msgid "Enable" msgid "Enable"
msgstr "启用" msgstr "启用"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:190 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:158
msgid "Enable IP selection between IPV4 and IPV6" msgid "Enable IP selection between IPV4 and IPV6"
msgstr "启用 IPV4 和 IPV6 间的 IP 优选策略" msgstr "启用 IPV4 和 IPV6 间的 IP 优选策略"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "Enable IPV6 DNS Server" msgid "Enable IPV6 DNS Server"
msgstr "启用IPV6服务器" msgstr "启用IPV6服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "Enable TCP DNS Server" msgid "Enable TCP DNS Server"
msgstr "启用TCP服务器" msgstr "启用TCP服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:164
msgid "Enable domain prefetch, accelerate domain response speed." msgid "Enable domain prefetch, accelerate domain response speed."
msgstr "启用域名预加载,加速域名响应速度。" msgstr "启用域名预加载,加速域名响应速度。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:239 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:223
msgid "Enable or disable second DNS server." msgid "Enable or disable second DNS server."
msgstr "是否启用第二DNS服务器。" msgstr "是否启用第二DNS服务器。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
msgid "Enable or disable smartdns server" msgid "Enable or disable smartdns server"
msgstr "启用或禁用SmartDNS服务" msgstr "启用或禁用SmartDNS服务"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362
msgid "Filtering IP with blacklist" msgid "Filtering IP with blacklist"
msgstr "使用IP黑名单过滤" msgstr "使用IP黑名单过滤"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA" msgid "Force AAAA SOA"
msgstr "停用IPV6地址解析" msgstr "停用IPV6地址解析"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:189
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287
msgid "Force AAAA SOA." msgid "Force AAAA SOA."
msgstr "停用IPV6地址解析。" msgstr "停用IPV6地址解析。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:156 msgid "Force HTTPS SOA"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:330 msgstr "停用HTTPS地址解析"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:194
msgid "Force HTTPS SOA."
msgstr "停用HTTPS地址解析。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:124
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:314
msgid "General Settings" msgid "General Settings"
msgstr "常规设置" msgstr "常规设置"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:319 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303
msgid "Generate Coredump" msgid "Generate Coredump"
msgstr "生成coredump" msgstr "生成coredump"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:320 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304
msgid "" msgid ""
"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" "Generate Coredump file when smartdns crash, coredump file is located at /tmp/"
"smartdns.xxx.core." "smartdns.xxx.core."
@ -176,199 +198,200 @@ msgstr ""
msgid "Grant access to LuCI app smartdns" msgid "Grant access to LuCI app smartdns"
msgstr "授予访问 LuCI 应用 smartdns 的权限" msgstr "授予访问 LuCI 应用 smartdns 的权限"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:404 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397
msgid "HTTP Host" msgid "HTTP Host"
msgstr "HTTP主机" msgstr "HTTP主机"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "IP Blacklist" msgid "IP Blacklist"
msgstr "IP黑名单" msgstr "IP黑名单"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361
msgid "IP Blacklist Filtering" msgid "IP Blacklist Filtering"
msgstr "IP黑名单过滤" msgstr "IP黑名单过滤"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:104 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:152
msgid "IPV4 53 Port Redirect Failure"
msgstr "IPV4 53端口重定向失败"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:110
msgid "IPV6 53 Port Redirect Failure"
msgstr "IPV6 53端口重定向失败"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:184
msgid "IPV6 Server" msgid "IPV6 Server"
msgstr "IPV6服务器" msgstr "IPV6服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:463 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:456
msgid "If you like this software, please buy me a cup of coffee." msgid "If you like this software, please buy me a cup of coffee."
msgstr "如果本软件对你有帮助,请给作者加个蛋。" msgstr "如果本软件对你有帮助,请给作者加个蛋。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:139
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "Local Port" msgid "Local Port"
msgstr "本地端口" msgstr "本地端口"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:212
msgid "Maximum TTL for all domain result." msgid "Maximum TTL for all domain result."
msgstr "所有域名的最大 TTL 值。" msgstr "所有域名的最大 TTL 值。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:225 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:204
msgid "Minimum TTL for all domain result." msgid "Minimum TTL for all domain result."
msgstr "所有域名的最小 TTL 值。" msgstr "所有域名的最小 TTL 值。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:87 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:65
msgid "NOT RUNNING" msgid "NOT RUNNING"
msgstr "未运行" msgstr "未运行"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:257 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:378
msgid "No check certificate"
msgstr "停用证书校验"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241
msgid "Query DNS through specific dns server group, such as office, home." msgid "Query DNS through specific dns server group, such as office, home."
msgstr "使用指定服务器组查询比如office, home。" msgstr "使用指定服务器组查询比如office, home。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:85 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:63
msgid "RUNNING" msgid "RUNNING"
msgstr "运行中" msgstr "运行中"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216
msgid "Redirect" msgid "Reply Domain TTL Max"
msgstr "重定向" msgstr "回应的域名TTL最大值"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:211 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:217
msgid "Redirect 53 port to SmartDNS" msgid "Reply maximum TTL for all domain result."
msgstr "重定向53端口到SmartDNS" msgstr "设置返回给客户端的域名TTL最大值。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Run as dnsmasq upstream server" msgid "Resolve Local Hostnames"
msgstr "作为dnsmasq的上游服务器" msgstr "解析本地主机名"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:157 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179
msgid "Resolve local hostnames by reading Dnsmasq lease file."
msgstr "读取Dnsmasq的租约文件解析本地主机名。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:125
msgid "Second Server Settings" msgid "Second Server Settings"
msgstr "第二DNS服务器" msgstr "第二DNS服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:201 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169
msgid "Serve expired" msgid "Serve expired"
msgstr "缓存过期服务" msgstr "缓存过期服务"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:256 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:352
msgid "Server Group" msgid "Server Group"
msgstr "服务器组" msgstr "服务器组"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Server Name" msgid "Server Name"
msgstr "服务器名称" msgstr "服务器名称"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:434 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:427
msgid "Set Specific domain ip address." msgid "Set Specific domain ip address."
msgstr "设置指定域名的IP地址。" msgstr "设置指定域名的IP地址。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:435 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:428
msgid "Set Specific ip blacklist." msgid "Set Specific ip blacklist."
msgstr "设置指定的 IP 黑名单列表。" msgstr "设置指定的 IP 黑名单列表。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:385 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:369
msgid "Set TLS hostname to verify." msgid "Set TLS hostname to verify."
msgstr "设置校验TLS主机名。" msgstr "设置校验TLS主机名。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:405 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:398
msgid "" msgid ""
"Set the HTTP host used for the query. Use this parameter when the host of " "Set the HTTP host used for the query. Use this parameter when the host of "
"the URL address is an IP address." "the URL address is an IP address."
msgstr "设置查询时使用的HTTP主机当URL地址的host是IP地址时使用此参数。" msgstr "设置查询时使用的HTTP主机当URL地址的host是IP地址时使用此参数。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:395 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:388
msgid "Sets the server name indication for query." msgid "Sets the server name indication for query."
msgstr "设置查询时使用的服务器SNI名称。" msgstr "设置查询时使用的服务器SNI名称。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
msgid "Settings" msgid "Settings"
msgstr "设置" msgstr "设置"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:269 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253
msgid "Skip Address Rules" msgid "Skip Address Rules"
msgstr "跳过address规则" msgstr "跳过address规则"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache" msgid "Skip Cache"
msgstr "跳过cache" msgstr "跳过cache"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:298 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "Skip Cache." msgid "Skip Cache."
msgstr "跳过cache。" msgstr "跳过cache。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:292 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276
msgid "Skip Dualstack Selection" msgid "Skip Dualstack Selection"
msgstr "跳过双栈优选" msgstr "跳过双栈优选"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277
msgid "Skip Dualstack Selection." msgid "Skip Dualstack Selection."
msgstr "跳过双栈优选。" msgstr "跳过双栈优选。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:281 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:265
msgid "Skip Ipset Rule" msgid "Skip Ipset Rule"
msgstr "跳过ipset规则" msgstr "跳过ipset规则"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:275 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:259
msgid "Skip Nameserver Rule" msgid "Skip Nameserver Rule"
msgstr "跳过Nameserver规则" msgstr "跳过Nameserver规则"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:287 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:271
msgid "Skip SOA Address Rule" msgid "Skip SOA Address Rule"
msgstr "跳过address SOA(#)规则" msgstr "跳过address SOA(#)规则"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:288 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
msgid "Skip SOA address rules." msgid "Skip SOA address rules."
msgstr "跳过address SOA(#)规则。" msgstr "跳过address SOA(#)规则。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:263 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247
msgid "Skip Speed Check" msgid "Skip Speed Check"
msgstr "跳过测速" msgstr "跳过测速"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:270 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:254
msgid "Skip address rules." msgid "Skip address rules."
msgstr "跳过address规则。" msgstr "跳过address规则。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:266
msgid "Skip ipset rules." msgid "Skip ipset rules."
msgstr "跳过ipset规则。" msgstr "跳过ipset规则。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:276 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:260
msgid "Skip nameserver rules." msgid "Skip nameserver rules."
msgstr "跳过Nameserver规则。" msgstr "跳过Nameserver规则。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:129 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:91
#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3
msgid "SmartDNS" msgid "SmartDNS"
msgstr "SmartDNS" msgstr "SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:130 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:92
msgid "SmartDNS Server" msgid "SmartDNS Server"
msgstr "SmartDNS 服务器" msgstr "SmartDNS 服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:93
msgid "" msgid ""
"SmartDNS is a local high-performance DNS server, supports finding fastest " "SmartDNS is a local high-performance DNS server, supports finding fastest "
"IP, supports ad filtering, and supports avoiding DNS poisoning." "IP, supports ad filtering, and supports avoiding DNS poisoning."
msgstr "SmartDNS是一个本地高性能DNS服务器支持返回最快IP支持广告过滤。" msgstr "SmartDNS是一个本地高性能DNS服务器支持返回最快IP支持广告过滤。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:467 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:460
msgid "SmartDNS official website" msgid "SmartDNS official website"
msgstr "SmartDNS官方网站" msgstr "SmartDNS官方网站"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:207 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:228
msgid "SmartDNS redirect mode"
msgstr "SmartDNS 重定向模式"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:244
msgid "Smartdns local server port" msgid "Smartdns local server port"
msgstr "SmartDNS本地服务端口" msgstr "SmartDNS本地服务端口"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:166 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:140
msgid ""
"Smartdns local server port, smartdns will be automatically set as main dns "
"when the port is 53."
msgstr "SmartDNS本地服务端口当端口号设置为53时smartdns将会自动配置为主dns。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Smartdns server name" msgid "Smartdns server name"
msgstr "SmartDNS的服务器名称默认为smartdns留空为主机名" msgstr "SmartDNS的服务器名称默认为smartdns留空为主机名"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:439 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:432
msgid "" msgid ""
"Specify an IP address to return for any host in the given domains, Queries " "Specify an IP address to return for any host in the given domains, Queries "
"in the domains are never forwarded and always replied to with the specified " "in the domains are never forwarded and always replied to with the specified "
@ -377,36 +400,36 @@ msgstr ""
"配置特定域名返回特定的IP地址域名查询将不到上游服务器请求直接返回配置的IP" "配置特定域名返回特定的IP地址域名查询将不到上游服务器请求直接返回配置的IP"
"地址,可用于广告屏蔽。" "地址,可用于广告屏蔽。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:179 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:251 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:235
msgid "TCP Server" msgid "TCP Server"
msgstr "TCP服务器" msgstr "TCP服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:368
msgid "TLS Hostname Verify" msgid "TLS Hostname Verify"
msgstr "校验TLS主机名" msgstr "校验TLS主机名"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:394 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:387
msgid "TLS SNI name" msgid "TLS SNI name"
msgstr "TLS SNI名称" msgstr "TLS SNI名称"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:413 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:406
msgid "TLS SPKI Pinning" msgid "TLS SPKI Pinning"
msgstr "TLS SPKI 指纹" msgstr "TLS SPKI 指纹"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:220 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:199
msgid "TTL for all domain result." msgid "TTL for all domain result."
msgstr "设置所有域名的 TTL 值。" msgstr "设置所有域名的 TTL 值。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:462 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:455
msgid "Technical Support" msgid "Technical Support"
msgstr "技术支持" msgstr "技术支持"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:308
msgid "Upstream Servers" msgid "Upstream Servers"
msgstr "上游服务器" msgstr "上游服务器"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:325 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309
msgid "" msgid ""
"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS "
"servers, including multiple foreign DNS servers." "servers, including multiple foreign DNS servers."
@ -414,7 +437,7 @@ msgstr ""
"上游 DNS 服务器,支持 UDPTCP 协议。请配置多个上游 DNS 服务器,包括多个国内" "上游 DNS 服务器,支持 UDPTCP 协议。请配置多个上游 DNS 服务器,包括多个国内"
"外服务器。" "外服务器。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:407
msgid "" msgid ""
"Used to verify the validity of the TLS server, The value is Base64 encoded " "Used to verify the validity of the TLS server, The value is Base64 encoded "
"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not "
@ -423,42 +446,59 @@ msgstr ""
"用于校验 TLS 服务器的有效性,数值为 Base64 编码的 SPKI 指纹,留空表示不验证 " "用于校验 TLS 服务器的有效性,数值为 Base64 编码的 SPKI 指纹,留空表示不验证 "
"TLS 的合法性。" "TLS 的合法性。"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:362 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346
msgid "https" msgid "https"
msgstr "https" msgstr "https"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:327
msgid "ip" msgid "ip"
msgstr "ip" msgstr "ip"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:461
msgid "none"
msgstr "无"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:468
msgid "open website" msgid "open website"
msgstr "打开网站" msgstr "打开网站"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:348 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:332
msgid "port" msgid "port"
msgstr "端口" msgstr "端口"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:309 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:293
msgid "smartdns custom settings" msgid "smartdns custom settings"
msgstr "smartdns 自定义设置,具体配置参数参考指导" msgstr "smartdns 自定义设置,具体配置参数参考指导"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:360 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:344
msgid "tcp" msgid "tcp"
msgstr "tcp" msgstr "tcp"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:361 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:345
msgid "tls" msgid "tls"
msgstr "tls" msgstr "tls"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:357 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "type" msgid "type"
msgstr "类型" msgstr "类型"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:359 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:343
msgid "udp" msgid "udp"
msgstr "udp" msgstr "udp"
#~ msgid "IPV4 53 Port Redirect Failure"
#~ msgstr "IPV4 53端口重定向失败"
#~ msgid "IPV6 53 Port Redirect Failure"
#~ msgstr "IPV6 53端口重定向失败"
#~ msgid "Redirect"
#~ msgstr "重定向"
#~ msgid "Redirect 53 port to SmartDNS"
#~ msgstr "重定向53端口到SmartDNS"
#~ msgid "Run as dnsmasq upstream server"
#~ msgstr "作为dnsmasq的上游服务器"
#~ msgid "SmartDNS redirect mode"
#~ msgstr "SmartDNS 重定向模式"
#~ msgid "none"
#~ msgstr "无"

View file

@ -4,8 +4,6 @@
"read": { "read": {
"file": { "file": {
"/etc/smartdns/*": [ "read" ], "/etc/smartdns/*": [ "read" ],
"/usr/sbin/iptables -t nat -nL PREROUTING": [ "exec" ],
"/usr/sbin/ip6tables -t nat -nL PREROUTING": [ "exec" ],
"/usr/sbin/smartdns": [ "exec" ] "/usr/sbin/smartdns": [ "exec" ]
}, },
"ubus": { "ubus": {