diff options
Diffstat (limited to 'applications/luci-app-https-dns-proxy')
124 files changed, 11249 insertions, 1424 deletions
diff --git a/applications/luci-app-https-dns-proxy/Makefile b/applications/luci-app-https-dns-proxy/Makefile index 0b933b560f..31fde02a59 100644 --- a/applications/luci-app-https-dns-proxy/Makefile +++ b/applications/luci-app-https-dns-proxy/Makefile @@ -1,16 +1,16 @@ -# Copyright 2017-2018 Stan Grishin (stangri@melmac.net) +# Copyright 2017-2018 Stan Grishin (stangri@melmac.ca) # This is free software, licensed under the GNU General Public License v3. include $(TOPDIR)/rules.mk PKG_LICENSE:=GPL-3.0-or-later -PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net> +PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca> +PKG_VERSION:=2021-09-27-3 LUCI_TITLE:=DNS Over HTTPS Proxy Web UI LUCI_DESCRIPTION:=Provides Web UI for DNS Over HTTPS Proxy LUCI_DEPENDS:=+luci-compat +luci-mod-admin-full +https-dns-proxy LUCI_PKGARCH:=all -PKG_RELEASE:=12 include ../../luci.mk diff --git a/applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua b/applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua index 10ce13e0cb..f7122df478 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua @@ -8,18 +8,20 @@ end function https_dns_proxy_action(name) local packageName = "https-dns-proxy" + local http = require "luci.http" + local sys = require "luci.sys" + local util = require "luci.util" if name == "start" then - luci.sys.init.start(packageName) + sys.init.start(packageName) elseif name == "action" then - luci.util.exec("/etc/init.d/" .. packageName .. " reload >/dev/null 2>&1") - luci.util.exec("/etc/init.d/dnsmasq restart >/dev/null 2>&1") + util.exec("/etc/init.d/" .. packageName .. " reload >/dev/null 2>&1") elseif name == "stop" then - luci.sys.init.stop(packageName) + sys.init.stop(packageName) elseif name == "enable" then - luci.sys.init.enable(packageName) + sys.init.enable(packageName) elseif name == "disable" then - luci.sys.init.disable(packageName) + sys.init.disable(packageName) end - luci.http.prepare_content("text/plain") - luci.http.write("0") + http.prepare_content("text/plain") + http.write("0") end diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua new file mode 100644 index 0000000000..2fa9985592 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua @@ -0,0 +1,8 @@ +return{ + name="DnsCryptCa-DNS1", + label=_("DNSCrypt.ca (DNS1)"), + resolver_url="https://dns1.dnscrypt.ca:453/dns-query", + bootstrap_dns="45.76.37.222,185.112.145.13,93.95.226.53,2001:19f0:5001:185a:5400:ff:fe50:56d5", + help_link="https://dnscrypt.ca/", + help_link_text="dnscrypt.ca" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua new file mode 100644 index 0000000000..f31dd38a23 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua @@ -0,0 +1,8 @@ +return{ + name="DnsCryptCa-DNS2", + label=_("DNSCrypt.ca (DNS2)"), + resolver_url="https://dns2.dnscrypt.ca:453/dns-query", + bootstrap_dns="45.76.37.222,185.112.145.13,93.95.226.53,2001:19f0:5001:185a:5400:ff:fe50:56d5", + help_link="https://dnscrypt.ca/", + help_link_text="dnscrypt.ca" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua deleted file mode 100644 index fc190437ca..0000000000 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - name = "Digitale-Gesellschaft", - label = _("Digitale Gesellschaft"), - resolver_url = "https://dns.digitale-gesellschaft.ch/dns-query", - bootstrap_dns = "185.95.218.42,185.95.218.43" -} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua deleted file mode 100644 index 86c4c56dc1..0000000000 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - name = "rubyfish.cn", - label = _("rubyfish.cn"), - resolver_url = "https://dns.rubyfish.cn/dns-query", - bootstrap_dns = "118.89.110.78,47.96.179.163" -} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua deleted file mode 100644 index 114d23ed5b..0000000000 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - name = "DNS.SB", - label = _("DNS.SB"), - resolver_url = "https://doh.dns.sb/dns-query", - bootstrap_dns = "185.222.222.222,185.184.222.222" -} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua new file mode 100644 index 0000000000..e3d8d1e11f --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.tiar.app", + label = _("Tiarap Public DNS - SG"), + resolver_url = "https://doh.tiar.app/dns-query", + bootstrap_dns = "174.138.21.128,2400:6180:0:d0::5f6e:4001", + help_link = "https://tiarap.org/", + help_link_text = "Tiarap.org" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua new file mode 100644 index 0000000000..06885628c5 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua @@ -0,0 +1,8 @@ +return { + name = "doh.tiar.jp", + label = _("Tiarap Public DNS - JP"), + resolver_url = "https://doh.tiar.jp/dns-query", + bootstrap_dns = "172.104.93.80,2400:8902::f03c:91ff:feda:c514", + help_link = "https://tiarap.org/", + help_link_text = "Tiarap.org" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua index 978a04e9b7..dfe1af44c0 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua @@ -1,5 +1,5 @@ return { - name = "cira-canadian-shield-family", + name = "family.canadianshield.cira.ca", label = _("CIRA Canadian Shield (Family)"), resolver_url = "https://family.canadianshield.cira.ca/dns-query", bootstrap_dns = "149.112.121.30,149.112.122.30,2620:10A:80BB::30,2620:10A:80BC::30", diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua index 438bcf25f1..5b37a9a4ca 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua @@ -1,5 +1,5 @@ return { - name = "cira-canadian-shield-private", + name = "private.canadianshield.cira.ca", label = _("CIRA Canadian Shield (Private)"), resolver_url = "https://private.canadianshield.cira.ca/dns-query", bootstrap_dns = "149.112.121.10,149.112.122.10,2620:10A:80BB::10,2620:10A:80BC::10", diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua index e0bd3be105..810f479bda 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua @@ -1,5 +1,5 @@ return { - name = "cira-canadian-shield-protected", + name = "protected.canadianshield.cira.ca", label = _("CIRA Canadian Shield (Protected)"), resolver_url = "https://protected.canadianshield.cira.ca/dns-query", bootstrap_dns = "149.112.121.20,149.112.122.20,2620:10A:80BB::20,2620:10A:80BC::20", diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua new file mode 100644 index 0000000000..3253cf49ea --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua @@ -0,0 +1,9 @@ +return { + name = "dns.digitale-gesellschaft.ch", + label = _("Digitale Gesellschaft - CH"), + resolver_url = "https://dns.digitale-gesellschaft.ch/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + http2_only = true, + help_link = "https://www.digitale-gesellschaft.ch/dns/", + help_link_text = "Digitale Gesellschaft" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua new file mode 100644 index 0000000000..9f0c594e0a --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua @@ -0,0 +1,8 @@ +return { + name = "dns.switch.ch", + label = _("Switch DNS - CH"), + resolver_url = "https://dns.switch.ch/dns-query", + bootstrap_dns = "130.59.31.248,2001:620:0:ff::2", + help_link = "https://www.switch.ch/security/info/public-dns/", + help_link_text = "Switch.ch" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua new file mode 100644 index 0000000000..f582a821ff --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua @@ -0,0 +1,6 @@ +return { + name = "doh.360.cn", + label = _("360 Secure DNS - CN"), + resolver_url = "https://doh.360.cn/dns-query", + bootstrap_dns = "101.226.4.6,218.30.118.6,123.125.81.6,140.207.198.6" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua new file mode 100644 index 0000000000..b64bd9ceb8 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua @@ -0,0 +1,7 @@ +return { + name = "dns.rubyfish.cn", + label = _("rubyfish.cn"), + resolver_url = "https://dns.rubyfish.cn/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + http2_only = true +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua new file mode 100644 index 0000000000..f54c912e7f --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua @@ -0,0 +1,8 @@ +return { + name = "dns.oszx.co", + label = _("OSZX DNS - UK"), + resolver_url = "https://dns.oszx.co/dns-query", + bootstrap_dns = "51.38.83.141,2001:41d0:801:2000::d64", + help_link = "https://dns.oszx.co/#mdoh", + help_link_text = "OSZX.co" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua index 56a409f916..0c2a4d8156 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua @@ -1,5 +1,5 @@ return { - name = "AdGuard-Family", + name = "dns-family.adguard.com", label = _("AdGuard (Family Protection)"), resolver_url = "https://dns-family.adguard.com/dns-query", bootstrap_dns = "176.103.130.132,176.103.130.134", diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua index 504070501f..79db2029dd 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua @@ -1,5 +1,5 @@ return { - name = "AdGuard-Standard", + name = "dns.adguard.com", label = _("AdGuard (Standard)"), resolver_url = "https://dns.adguard.com/dns-query", bootstrap_dns = "176.103.130.130,176.103.130.131", diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua new file mode 100644 index 0000000000..5a67fcbdb7 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua @@ -0,0 +1,8 @@ +return { + name = "blitz.ahadns.com", + label = _("AhaDNS Blitz (Configurable)"), + resolver_url = "https://blitz.ahadns.com/", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://blitz-setup.ahadns.com/", + help_link_text = "AhaDNS Blitz" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua index 4ef78c1cbe..1654feab0b 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua @@ -1,6 +1,8 @@ return { - name="AliDNS", - label=_("AliDNS"), + name="dns.alidns.com", + label=_("AliDNS - CN"), resolver_url="https://dns.alidns.com/dns-query", - bootstrap_dns="223.5.5.5,223.6.6.6,2400:3200::1,2400:3200:baba::1" + bootstrap_dns="223.5.5.5,223.6.6.6,2400:3200::1,2400:3200:baba::1", + help_link = "https://alidns.com/", + help_link_text = "AliDNS.com" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua new file mode 100644 index 0000000000..8e22f59bb2 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua @@ -0,0 +1,8 @@ +return { + name = "doh-ch.blahdns.com", + label = _("BlahDNS - CH"), + resolver_url = "https://doh-ch.blahdns.com/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://blahdns.com/", + help_link_text = "BlahDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua new file mode 100644 index 0000000000..d252c521ac --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua @@ -0,0 +1,8 @@ +return { + name = "doh-de.blahdns.com", + label = _("BlahDNS - DE"), + resolver_url = "https://doh-de.blahdns.com/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://blahdns.com/", + help_link_text = "BlahDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua new file mode 100644 index 0000000000..75f01ed17c --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua @@ -0,0 +1,8 @@ +return { + name = "doh-fi.blahdns.com", + label = _("BlahDNS - FI"), + resolver_url = "https://doh-fi.blahdns.com/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://blahdns.com/", + help_link_text = "BlahDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua new file mode 100644 index 0000000000..3cb783d42e --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua @@ -0,0 +1,8 @@ +return { + name = "doh-jp.blahdns.com", + label = _("BlahDNS - JP"), + resolver_url = "https://doh-jp.blahdns.com/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://blahdns.com/", + help_link_text = "BlahDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua new file mode 100644 index 0000000000..32b684d261 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua @@ -0,0 +1,8 @@ +return { + name = "doh-sg.blahdns.com", + label = _("BlahDNS - SG"), + resolver_url = "https://doh-sg.blahdns.com/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://blahdns.com/", + help_link_text = "BlahDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua index 8bad0a0773..69fe4d2d24 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua @@ -1,8 +1,8 @@ return { - name = "Cloudflare-Family", + name = "family.cloudflare-dns.com", label = _("Cloudflare (Family Protection)"), resolver_url = "https://family.cloudflare-dns.com/dns-query", bootstrap_dns = "1.1.1.3,1.0.0.3,2606:4700:4700::1113,2606:4700:4700::1003", help_link = "https://one.one.one.one/family/", - help_link_text = "Cloudflare" + help_link_text = "Cloudflare.com" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua index 7e30c125c8..eb78366ac2 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua @@ -1,8 +1,9 @@ return { - name = "Cloudflare", + name = "cloudflare-dns.com", label = _("Cloudflare"), resolver_url = "https://cloudflare-dns.com/dns-query", bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001", help_link = "https://one.one.one.one/family/", - help_link_text = "Cloudflare" + help_link_text = "Cloudflare.com", + default = true } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua index d80b4cf5bd..3013305bd5 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua @@ -1,8 +1,8 @@ return { - name = "Cloudflare-Security", + name = "security.cloudflare-dns.com", label = _("Cloudflare (Security Protection)"), resolver_url = "https://security.cloudflare-dns.com/dns-query", bootstrap_dns = "1.1.1.2,1.0.0.2,2606:4700:4700::1112,2606:4700:4700::1002", help_link = "https://one.one.one.one/family/", - help_link_text = "Cloudflare" + help_link_text = "Cloudflare.com" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua new file mode 100644 index 0000000000..e7d6ffda93 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua @@ -0,0 +1,8 @@ +return { + name = "freedns.controld.com-family", + label = _("ControlD (Family)"), + resolver_url = "https://freedns.controld.com/family", + bootstrap_dns = "76.76.2.4,2606:1a40::4", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua new file mode 100644 index 0000000000..4b8ee02729 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Malware-Ads-Social", + label = _("ControlD (Block Malware + Ads + Social)"), + resolver_url = "https://freedns.controld.com/p3", + bootstrap_dns = "76.76.2.3,2606:1a40::3", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua new file mode 100644 index 0000000000..947ed59a1c --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Malware-Ads", + label = _("ControlD (Block Malware + Ads)"), + resolver_url = "https://freedns.controld.com/p2", + bootstrap_dns = "76.76.2.2,2606:1a40::2", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua new file mode 100644 index 0000000000..77f062b1b4 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Malware", + label = _("ControlD (Block Malware)"), + resolver_url = "https://freedns.controld.com/p1", + bootstrap_dns = "76.76.2.1,2606:1a40::1", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua new file mode 100644 index 0000000000..a520c9694f --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua @@ -0,0 +1,8 @@ +return { + name = "freedns.controld.com-p0", + label = _("ControlD (Unfiltered)"), + resolver_url = "https://freedns.controld.com/p0", + bootstrap_dns = "76.76.2.0,2606:1a40::0", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua new file mode 100644 index 0000000000..eac144e92d --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua @@ -0,0 +1,8 @@ +return { + name = "freedns.controld.com-p1", + label = _("ControlD (Block Malware)"), + resolver_url = "https://freedns.controld.com/p1", + bootstrap_dns = "76.76.2.1,2606:1a40::1", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua new file mode 100644 index 0000000000..0e7c846a6a --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua @@ -0,0 +1,8 @@ +return { + name = "freedns.controld.com-p2", + label = _("ControlD (Block Malware + Ads)"), + resolver_url = "https://freedns.controld.com/p2", + bootstrap_dns = "76.76.2.2,2606:1a40::2", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua new file mode 100644 index 0000000000..0249678de0 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua @@ -0,0 +1,8 @@ +return { + name = "freedns.controld.com-p3", + label = _("ControlD (Block Malware + Ads + Social)"), + resolver_url = "https://freedns.controld.com/p3", + bootstrap_dns = "76.76.2.3,2606:1a40::3", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua new file mode 100644 index 0000000000..d4128df343 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua @@ -0,0 +1,8 @@ +return { + name = "ControlD-Unfiltered", + label = _("ControlD (Unfiltered)"), + resolver_url = "https://freedns.controld.com/p0", + bootstrap_dns = "76.76.2.0,2606:1a40::0", + help_link = "https://kb.controld.com/tutorials", + help_link_text = "ControlD" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua new file mode 100644 index 0000000000..1135c093d8 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua @@ -0,0 +1,8 @@ +return { + name = "dns.decloudus.com", + label = _("DeCloudUs DNS"), + resolver_url = "https://dns.decloudus.com/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://decloudus.com/", + help_link_text = "DeCloudUs.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua new file mode 100644 index 0000000000..41b63ffbd7 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua @@ -0,0 +1,8 @@ +return { + name = "dnsforfamily", + label = _("DNS For Family"), + resolver_url = "https://dns-doh.dnsforfamily.com/dns-query", + bootstrap_dns = "94.130.180.225,78.47.64.161", + help_link = "https://dnsforfamily.com/#DNS_Servers_DNS_Over_HTTPS", + help_link_text = "DNSForFamily.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua new file mode 100644 index 0000000000..e531bcc8d4 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.dnslify.com", + label = _("DNSlify DNS"), + resolver_url = "https://doh.dnslify.com/dns-query", + bootstrap_dns = "185.235.81.1,185.235.81.2,2a0d:4d00:81::1,2a0d:4d00:81::2", + help_link = "https://www.dnslify.com/services/doh/", + help_link_text = "DNSlify.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua index b3eff188a1..16a833110f 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua @@ -1,8 +1,8 @@ return { - name = "OpenDNS", + name = "doh.opendns.com", label = _("OpenDNS"), resolver_url = "https://doh.opendns.com/dns-query", bootstrap_dns = "208.67.222.222,208.67.220.220", help_link = "https://support.opendns.com/hc/en-us/articles/360038086532-Using-DNS-over-HTTPS-DoH-with-OpenDNS", - help_link_text = "OpenDNS" + help_link_text = "OpenDNS.com" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua index 12cc89a965..8686d8c5f5 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua @@ -1,8 +1,8 @@ return { - name = "OpenDNS-FamilyShield", + name = "doh.familyshield.opendns.com", label = _("OpenDNS (Family Shield)"), resolver_url = "https://doh.familyshield.opendns.com/dns-query", bootstrap_dns = "208.67.222.123,208.67.220.123", help_link = "https://support.opendns.com/hc/en-us/articles/360038086532-Using-DNS-over-HTTPS-DoH-with-OpenDNS", - help_link_text = "OpenDNS" + help_link_text = "OpenDNS.com" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua new file mode 100644 index 0000000000..b61630af26 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua @@ -0,0 +1,8 @@ +return { + name = "dns.pumplex.com", + label = _("OSZX DNS (Pumplex)"), + resolver_url = "https://dns.pumplex.com/dns-query", + bootstrap_dns = "51.38.82.198,2001:41d0:801:2000::1b28", + help_link = "https://dns.oszx.co/#mdoh", + help_link_text = "OSZX.co" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua new file mode 100644 index 0000000000..966ccd757a --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua @@ -0,0 +1,8 @@ +return { + name = "basic.rethinkdns.com", + label = _("Rethink DNS (Configurable)"), + resolver_url = "https://basic.rethinkdns.com/", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://www.rethinkdns.com/configure", + help_link_text = "RethinkDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua index 3dfe309368..5568fc7bbb 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua @@ -1,6 +1,8 @@ return { - name = "odvr-nic-cz", + name = "odvr.nic.cz", label = _("ODVR (nic.cz)"), resolver_url = "https://odvr.nic.cz/doh", - bootstrap_dns = "193.17.47.1,185.43.135.1" + bootstrap_dns = "193.17.47.1,185.43.135.1,2001:148f:ffff::1,2001:148f:fffe::1", + help_link = "https://www.nic.cz/odvr/", + help_link_text = "nic.cz" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua new file mode 100644 index 0000000000..a6fe548fc1 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua @@ -0,0 +1,8 @@ +return { + name = "dnsforge.de", + label = _("DNS Forge - DE"), + resolver_url = "https://dnsforge.de/dns-query", + bootstrap_dns = "176.9.93.198,176.9.1.117,2a01:4f8:151:34aa::198,2a01:4f8:141:316d::117", + help_link = "https://dnsforge.de/", + help_link_text = "DNSForge.de" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua new file mode 100644 index 0000000000..5954ea78cf --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua @@ -0,0 +1,8 @@ +return { + name = "resolver-eu.lelux.fi", + label = _("Lelux DNS - FI"), + resolver_url = "https://resolver-eu.lelux.fi/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://lelux.fi/resolver/", + help_link_text = "Lelux.fi" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua index 6eab04064b..a23e9e5318 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua @@ -1,7 +1,6 @@ return { - name = "Google", + name = "dns.google", label = _("Google"), resolver_url = "https://dns.google/dns-query", - bootstrap_dns = "8.8.8.8,8.8.4.4", - default = true + bootstrap_dns = "8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua index 22e6fffe41..63e4290f00 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua @@ -1,8 +1,8 @@ return { - name = "LibreDNS (No Ads)", - label = _("LibreDNS (No Ads)"), + name = "doh.libredns.gr-ads", + label = _("LibreDNS - GR (No Ads)"), resolver_url = "https://doh.libredns.gr/ads", - bootstrap_dns = "116.202.176.26", + bootstrap_dns = "116.202.176.26,1.1.1.1", help_link = "https://libredns.gr/", help_link_text = "LibreDNS.gr" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua index bd51e1be42..67f9e5ffd7 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua @@ -1,8 +1,8 @@ return { - name = "LibreDNS", - label = _("LibreDNS"), + name = "doh.libredns.gr", + label = _("LibreDNS - GR"), resolver_url = "https://doh.libredns.gr/dns-query", - bootstrap_dns = "116.202.176.26", + bootstrap_dns = "116.202.176.26,1.1.1.1", help_link = "https://libredns.gr/", help_link_text = "LibreDNS.gr" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua new file mode 100644 index 0000000000..53aca92edd --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua @@ -0,0 +1,8 @@ +return { + name = "dns.nextdns.io", + label = _("NextDNS.io (Configurable)"), + resolver_url = "https://dns.nextdns.io/", + bootstrap_dns = "45.90.28.49,45.90.30.49", + help_link = " https://my.nextdns.io", + help_link_text = "NextDNS.io" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua new file mode 100644 index 0000000000..6746e50573 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua @@ -0,0 +1,8 @@ +return { + name = "doh-2.seby.io", + label = _("Seby DNS - AU"), + resolver_url = "https://doh-2.seby.io/dns-query", + bootstrap_dns = "45.76.113.31,139.99.222.72", + help_link = "https://dns.seby.io/", + help_link_text = "Seby.io" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua new file mode 100644 index 0000000000..bd7660e116 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua @@ -0,0 +1,8 @@ +return { + name = "public.dns.iij.jp", + label = _("IIJ Public DNS - JP"), + resolver_url = "https://public.dns.iij.jp/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://www.iij.ad.jp/", + help_link_text = "IIJ.ad.jp" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua new file mode 100644 index 0000000000..474a47bdaa --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua @@ -0,0 +1,8 @@ +return { + name = "kaitain.restena.lu", + label = _("Restena DNS - LU"), + resolver_url = "https://kaitain.restena.lu/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://www.restena.lu/en/service/public-dns-resolver", + help_link_text = "Restena.lu" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua new file mode 100644 index 0000000000..4105111cf9 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.au.ahadns.net", + label = _("AhaDNS - AU (Block Malware + Ads)"), + resolver_url = "https://doh.au.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua new file mode 100644 index 0000000000..382893edcc --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.chi.ahadns.net", + label = _("AhaDNS - US/Chicago (Block Malware + Ads)"), + resolver_url = "https://doh.chi.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua new file mode 100644 index 0000000000..3ebbcc43c1 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.es.ahadns.net", + label = _("AhaDNS - ES (Block Malware + Ads)"), + resolver_url = "https://doh.es.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua new file mode 100644 index 0000000000..c2a128e2fd --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.in.ahadns.net", + label = _("AhaDNS - IN (Block Malware + Ads)"), + resolver_url = "https://doh.in.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua new file mode 100644 index 0000000000..7c2d1a51c7 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.it.ahadns.net", + label = _("AhaDNS - IT (Block Malware + Ads)"), + resolver_url = "https://doh.it.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua new file mode 100644 index 0000000000..7d643cfa24 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.la.ahadns.net", + label = _("AhaDNS - US/Los Angeles (Block Malware + Ads)"), + resolver_url = "https://doh.la.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua new file mode 100644 index 0000000000..ce709d1520 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.nl.ahadns.net", + label = _("AhaDNS - NL (Block Malware + Ads)"), + resolver_url = "https://doh.nl.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua new file mode 100644 index 0000000000..d89ccfb572 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.no.ahadns.net", + label = _("AhaDNS - NO (Block Malware + Ads)"), + resolver_url = "https://doh.no.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua new file mode 100644 index 0000000000..6451ae9109 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.ny.ahadns.net", + label = _("AhaDNS - US/New York (Block Malware + Ads)"), + resolver_url = "https://doh.ny.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua new file mode 100644 index 0000000000..f5563a5937 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.pl.ahadns.net", + label = _("AhaDNS - PL (Block Malware + Ads)"), + resolver_url = "https://doh.pl.ahadns.net/dns-query", + bootstrap_dns = "185.213.26.187,45.67.219.208,5.2.75.75,45.79.120.233,2a0d:5600:33:3::3,2a04:bdc7:100:70::70,2a04:52c0:101:75::75,2400:8904:e001:43::43", + help_link = "https://ahadns.com/dns-over-https/", + help_link_text = "AhaDNS.com" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua new file mode 100644 index 0000000000..11f738cc48 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua @@ -0,0 +1,8 @@ +return { + name = "doh.applied-privacy.net", + label = _("Applied Privacy DNS - AT/DE"), + resolver_url = "https://doh.applied-privacy.net/query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://applied-privacy.net/services/dns/", + help_link_text = "Applied-Privacy.net" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua new file mode 100644 index 0000000000..d64f5c085a --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua @@ -0,0 +1,6 @@ +return { + name = "dns.cfiec.net", + label = _("CFIEC Public DNS (IPv6 Only)"), + resolver_url = "https://dns.cfiec.net/dns-query", + bootstrap_dns = "240C::6666,240C::6644" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua new file mode 100644 index 0000000000..83582082c0 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua @@ -0,0 +1,8 @@ +return { + name = "doh.ffmuc.net", + label = _("FFMUC DNS - DE"), + resolver_url = "https://doh.ffmuc.net/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://ffmuc.net/wiki/doku.php?id=knb:dohdot", + help_link_text = "FFMUC.net" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua new file mode 100644 index 0000000000..24a4f40763 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua @@ -0,0 +1,8 @@ +return { + name = "ordns.he.net", + label = _("Hurricane Electric"), + resolver_url = "https://ordns.he.net/dns-query", + bootstrap_dns = "74.82.42.42,2001:470:20::2", + help_link = "https://forums.he.net/index.php?topic=3996.0", + help_link_text = "he.net" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua new file mode 100644 index 0000000000..9213b9988d --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua @@ -0,0 +1,6 @@ +return{ + name = "doh.idnet.net", + label = _("IDNet.net - UK"), + resolver_url = "https://doh.idnet.net/dns-query", + bootstrap_dns = "212.69.36.23,212.69.40.23" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua new file mode 100644 index 0000000000..f5a37fa4a8 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua @@ -0,0 +1,9 @@ +return { + name="adblock.doh.mullvad.net", + label=_("Mullvad (AdBlock)"), + resolver_url="https://adblock.doh.mullvad.net/dns-query", + bootstrap_dns="1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link="https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/", + help_link_text="Mullvad.net", + http2_only = true +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua new file mode 100644 index 0000000000..2857f642d2 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua @@ -0,0 +1,9 @@ +return { + name="doh.mullvad.net", + label=_("Mullvad"), + resolver_url="https://doh.mullvad.net/dns-query", + bootstrap_dns="1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link="https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/", + help_link_text="Mullvad.net", + http2_only = true +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua index eaa4b83703..c627be3d68 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua @@ -1,8 +1,8 @@ return { - name = "Quad9-Recommended", + name = "dns.quad9.net", label = _("Quad 9 (Recommended)"), resolver_url = "https://dns.quad9.net/dns-query", - bootstrap_dns = "9.9.9.9,149.112.112.112", + bootstrap_dns = "9.9.9.9,149.112.112.112,2620:fe::fe,2620:fe::9", help_link = "https://www.quad9.net/doh-quad9-dns-servers/", help_link_text = "Quad9.net" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua index 4d1914a0f6..7abbdc4efc 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua @@ -1,8 +1,8 @@ return { - name = "Quad9-Unsecured", + name = "dns10.quad9.net", label = _("Quad 9 (Unsecured)"), resolver_url = "https://dns10.quad9.net/dns-query", - bootstrap_dns = "9.9.9.10,149.112.112.10", + bootstrap_dns = "9.9.9.10,149.112.112.10,2620:fe::10,2620:fe::fe:10", help_link = "https://www.quad9.net/doh-quad9-dns-servers/", help_link_text = "Quad9.net" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua index 36fbeb39e8..7e7dcdd56c 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua @@ -1,8 +1,8 @@ return { - name = "Quad9-ECS", + name = "dns11.quad9.net", label = _("Quad 9 (Secured with ECS Support)"), resolver_url = "https://dns11.quad9.net/dns-query", - bootstrap_dns = "9.9.9.11,149.112.112.11", + bootstrap_dns = "9.9.9.11,149.112.112.11,2620:fe::11,2620:fe::fe:11", help_link = "https://www.quad9.net/doh-quad9-dns-servers/", help_link_text = "Quad9.net" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua index 61ca444eff..6c2994ab41 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua @@ -1,8 +1,8 @@ return { - name = "Quad9-Secured", + name = "dns9.quad9.net", label = _("Quad 9 (Secured)"), resolver_url = "https://dns9.quad9.net/dns-query", - bootstrap_dns = "9.9.9.9,149.112.112.9", + bootstrap_dns = "9.9.9.9,149.112.112.9,2620:fe::fe,2620:fe::9", help_link = "https://www.quad9.net/doh-quad9-dns-servers/", help_link_text = "Quad9.net" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua new file mode 100644 index 0000000000..fe42ae3014 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua @@ -0,0 +1,6 @@ +return { + name = "dns.comss.one", + label = _("Comss.ru DNS (West)"), + resolver_url = "https://dns.comss.one/dns-query", + bootstrap_dns = "92.38.152.163,93.115.24.204,2a03:90c0:56::1a5,2a02:7b40:5eb0:e95d::1" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua new file mode 100644 index 0000000000..9aff7f23df --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua @@ -0,0 +1,6 @@ +return { + name = "dns.east.comss.one", + label = _("Comss.ru DNS (East)"), + resolver_url = "https://dns.east.comss.one/dns-query", + bootstrap_dns = "92.223.109.31,91.230.211.67,2a03:90c0:b5::1a,2a04:2fc0:39::47" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua index 5b4d908543..09b3e250b7 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua @@ -1,8 +1,8 @@ return { - name = "CleanBrowsing-Adult", + name = "doh.cleanbrowsing.org-doh-adult-filter", label = _("CleanBrowsing (Adult Filter)"), resolver_url = "https://doh.cleanbrowsing.org/doh/adult-filter/", - bootstrap_dns = "185.228.168.168", + bootstrap_dns = "185.228.168.168,1.1.1.1", help_link = "https://cleanbrowsing.org/guides/dnsoverhttps", help_link_text = "CleanBrowsing.org" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua index 47a0654d22..cd55277978 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua @@ -1,8 +1,8 @@ return { - name = "CleanBrowsing-Family", + name = "doh.cleanbrowsing.org-doh-family-filter", label = _("CleanBrowsing (Family Filter)"), resolver_url = "https://doh.cleanbrowsing.org/doh/family-filter/", - bootstrap_dns = "185.228.168.168", + bootstrap_dns = "185.228.168.168,1.1.1.1", help_link = "https://cleanbrowsing.org/guides/dnsoverhttps", help_link_text = "CleanBrowsing.org" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua index 6e370d513f..339a0c2361 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua @@ -1,8 +1,8 @@ return { - name = "CleanBrowsing-Security", + name = "doh.cleanbrowsing.org-doh-security-filter", label = _("CleanBrowsing (Security Filter)"), resolver_url = "https://doh.cleanbrowsing.org/doh/security-filter/", - bootstrap_dns = "185.228.168.168", + bootstrap_dns = "185.228.168.168,1.1.1.1", help_link = "https://cleanbrowsing.org/guides/dnsoverhttps", help_link_text = "CleanBrowsing.org" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua new file mode 100644 index 0000000000..b89b27da91 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua @@ -0,0 +1,8 @@ +return { + name = "fi.doh.dns.snopyta.org", + label = _("Snopyta DNS - FI"), + resolver_url = "https://fi.doh.dns.snopyta.org/dns-query", + bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001,8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844", + help_link = "https://snopyta.org/service/dns/", + help_link_text = "Snopyta.org" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua index 6e831f7fb0..1dfee88707 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua @@ -1,6 +1,8 @@ return{ - name = "DNSPod-cn-Public-DNS", - label = _("DNSPod.cn Public DNS"), + name = "doh.pub", + label = _("DNSPod Public DNS - CN"), resolver_url = "https://doh.pub/dns-query", - bootstrap_dns = "119.29.29.29,119.28.28.28" + bootstrap_dns = "119.29.29.29,119.28.28.28", + help_link = "https://www.dnspod.com/Products/Public.DNS", + help_link_text = "DNSPod.com" } diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua new file mode 100644 index 0000000000..5b23d3dd46 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua @@ -0,0 +1,9 @@ +return { + name = "doh.dns.sb", + label = _("DNS.SB"), + resolver_url = "https://doh.dns.sb/dns-query", + bootstrap_dns = "185.222.222.222,185.184.222.222", + http2_only = true, + help_link = "https://dns.sb/doh/", + help_link_text = "DNS.sb" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua new file mode 100644 index 0000000000..628dd8be57 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua @@ -0,0 +1,8 @@ +return { + name = "dns.twnic.tw", + label = _("Quad 101 - TW"), + resolver_url = "https://dns.twnic.tw/dns-query", + bootstrap_dns = "101.101.101.101,101.102.103.104,2001:de4::101,2001:de4::102", + help_link = "https://blog.twnic.tw/2018/12/28/1803/", + help_link_text = "TWNIC.tw" +} diff --git a/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua b/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua index 4fdaf26a00..a8e45b5807 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua @@ -6,8 +6,10 @@ local i18n = require "luci.i18n" local uci = require("luci.model.uci").cursor() local packageName = "https-dns-proxy" +local readmeURL = "https://docs.openwrt.melmac.net/" .. packageName .. "/" local providers_dir = "/usr/lib/lua/luci/" .. packageName .. "/providers/" local helperText = "" +local http2Supported = false function getPackageVersion() local opkgFile = "/usr/lib/opkg/status" @@ -24,12 +26,12 @@ function getPackageVersion() end function createHelperText() - local initText = "<br />" .. translate("For more information on different options check") .. " " + local initText = translate("For more information on different options check") .. " " for filename in fs.dir(providers_dir) do local p_func = loadfile(providers_dir .. filename) setfenv(p_func, { _ = i18n.translate }) local p = p_func() - if p.help_link then + if p.help_link and (not p.http2_only or http2Supported) then local url, domain url = p.help_link domain = p.help_link_text or url:match('^%w+://([^/]+)') @@ -68,63 +70,73 @@ local ubusStatus = util.ubus("service", "list", { name = packageName }) local packageVersion = getPackageVersion() if packageVersion == "" then - packageStatusCode = -1 - packageStatus = translatef("%s is not installed or not found", packageName) + packageStatusCode, packageStatus = -1, translatef("%s is not installed or not found", packageName) else - if not ubusStatus or not ubusStatus[packageName] then + packageStatusCode, packageStatus = 1, "" + for n = 1,20 do + if ubusStatus and ubusStatus[packageName] and + ubusStatus[packageName]["instances"] and + ubusStatus[packageName]["instances"]["instance" .. n] and + ubusStatus[packageName]["instances"]["instance" .. n]["running"] then + local value, k, v, url, url_flag, la, la_flag, lp, lp_flag + for k, v in pairs(ubusStatus[packageName]["instances"]["instance" .. n]["command"]) do + if la_flag then la, la_flag = v, false end + if lp_flag then lp, lp_flag = v, false end + if url_flag then url, url_flag = v, false end + if v == "-a" then la_flag = true end + if v == "-p" then lp_flag = true end + if v == "-r" then url_flag = true end + end + la = la or "127.0.0.1" + lp = lp or n + 5053 + packageStatus = packageStatus .. translatef("%s DoH at %s:%s", getProviderName(url), la, lp) .. "\n" + else + break + end + end + if packageStatus == "" then packageStatusCode = 0 packageStatus = translate("Stopped") if not sys.init.enabled(packageName) then packageStatus = packageStatus .. " (" .. translate("disabled") .. ")" end - else - packageStatusCode, packageStatus = 1, "" - for n = 1,1000 do - if ubusStatus and ubusStatus[packageName] and - ubusStatus[packageName]["instances"] and - ubusStatus[packageName]["instances"]["instance" .. n] and - ubusStatus[packageName]["instances"]["instance" .. n]["running"] then - local value, k, v, url, url_flag, la, la_flag, lp, lp_flag - for k, v in pairs(ubusStatus[packageName]["instances"]["instance" .. n]["command"]) do - if la_flag then la, la_flag = v, false end - if lp_flag then lp, lp_flag = v, false end - if url_flag then url, url_flag = v, false end - if v == "-a" then la_flag = true end - if v == "-p" then lp_flag = true end - if v == "-r" then url_flag = true end - end - la = la or "127.0.0.1" - lp = lp or n + 5053 - packageStatus = packageStatus .. translatef("Running: %s DoH at %s:%s", getProviderName(url), la, lp) .. "\n" - else - break - end - end end end +if sys.call("curl --version | grep -q HTTP2") == 0 then + http2Supported = true +end + m = Map("https-dns-proxy", translate("DNS HTTPS Proxy Settings")) h = m:section(TypedSection, "_dummy", translatef("Service Status [%s %s]", packageName, packageVersion)) h.template = "cbi/nullsection" ss = h:option(DummyValue, "_dummy", translate("Service Status")) -if packageStatusCode == -1 then - ss.template = packageName .. "/status" - ss.value = packageStatus -else - if packageStatusCode == 0 then - ss.template = packageName .. "/status" - else - ss.template = packageName .. "/status-textarea" - end - ss.value = packageStatus - buttons = h:option(DummyValue, "_dummy") +ss.template = packageName .. "/status" +ss.value = packageStatus +if packageStatusCode ~= -1 then + buttons = h:option(DummyValue, "_dummy", translate("Service Control")) buttons.template = packageName .. "/buttons" end +c = m:section(NamedSection, "config", "https-dns-proxy", translate("Configuration")) +d1 = c:option(ListValue, "update_dnsmasq_config", translate("Update DNSMASQ Config on Start/Stop"), translatef("If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS%s will be automatically updated to use selected DoH providers (%smore information%s).", "<a href=\"" .. dispatcher.build_url("admin/network/dhcp") .. "\">", "</a>", "<a href=\"" .. readmeURL .. "#default-settings" .. "\" target=\"_blank\">", "</a>")) +d1:value('*', translate("Update all configs")) +local dnsmasq_num = 0 +uci:foreach("dhcp", "dnsmasq", function(s) +d1:value(tostring(dnsmasq_num), translatef("Update %s config", "dhcp.@dnsmasq[" .. tostring(dnsmasq_num) .. "]")) +dnsmasq_num = dnsmasq_num + 1 +end) +d1:value('-', translate("Do not update configs")) +d1.default = '*' +f1 = c:option(ListValue, "force_dns", translate("Force Router DNS"), translate("Forces Router DNS use on local devices, also known as DNS Hijacking.")) +f1:value("0", translate("Let local devices use their own DNS servers if set")) +f1:value("1", translate("Force Router DNS server to all local devices")) +f1.default = '1' + createHelperText() s3 = m:section(TypedSection, "https-dns-proxy", translate("Instances"), - translatef("When you add/remove any instances below, they will be used to override the 'DNS forwardings' section of %sDHCP and DNS%s.", "<a href=\"" .. dispatcher.build_url("admin/network/dhcp") .. "\">", "</a>") .. helperText) + helperText) s3.template = "cbi/tblsection" s3.sortable = false s3.anonymous = true @@ -135,7 +147,9 @@ for filename in fs.dir(providers_dir) do local p_func = loadfile(providers_dir .. filename) setfenv(p_func, { _ = i18n.translate }) local p = p_func() - prov:value(p.resolver_url, p.label) + if not p.http2_only or http2Supported then + prov:value(p.resolver_url, p.label) + end if p.default then prov.default = p.resolver_url end @@ -150,14 +164,18 @@ prov.write = function(self, section, value) value = value:gsub('[%p%c%s]', '') p.url_match = p.resolver_url:gsub('[%p%c%s]', '') if value:match(p.url_match) then - uci:set(packageName, section, "bootstrap_dns", p.bootstrap_dns) - uci:set(packageName, section, "resolver_url", p.resolver_url) + if p.bootstrap_dns then + uci:set(packageName, section, "bootstrap_dns", p.bootstrap_dns) + end + if p.resolver_url then + uci:set(packageName, section, "resolver_url", p.resolver_url) + end end end uci:save(packageName) end -la = s3:option(Value, "listen_addr", translate("Listen address")) +la = s3:option(Value, "listen_addr", translate("Listen Address")) la.datatype = "host" la.placeholder = "127.0.0.1" la.rmempty = true @@ -170,11 +188,15 @@ uci:foreach(packageName, packageName, function(s) n = n + 1 end) -lp = s3:option(Value, "listen_port", translate("Listen port")) +lp = s3:option(Value, "listen_port", translate("Listen Port")) lp.datatype = "port" lp.value = n + 5053 -ps = s3:option(Value, "proxy_server", translate("Proxy server")) +dscp = s3:option(Value, "dscp_codepoint", translate("DSCP Codepoint")) +dscp.datatype = "range(0,63)" +dscp.rmempty = true + +ps = s3:option(Value, "proxy_server", translate("Proxy Server")) ps.rmempty = true return m diff --git a/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm b/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm index b7fcd472ed..6a01206094 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm +++ b/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm @@ -1,4 +1,4 @@ -<%# Copyright 2020 Stan Grishin <stangri@melmac.net> -%> +<%# Copyright 2020 Stan Grishin <stangri@melmac.ca> -%> <%+https-dns-proxy/css%> <%+https-dns-proxy/js%> @@ -36,29 +36,29 @@ end -%> -<div class="cbi-value"><label class="cbi-value-title">Service Control</label> +<%+cbi/valueheader%> <div class="cbi-value-field"> - <input type="button" class="cbi-button cbi-button-apply" id="btn_start" name="start" value="<%:Start%>" + <input type="button" class="btn cbi-button cbi-button-apply" id="btn_start" name="start" value="<%:Start%>" onclick="button_action(this)" /> <span id="btn_start_spinner" class="btn_spinner"></span> - <input type="button" class="cbi-button cbi-button-apply" id="btn_action" name="action" value="<%:Reload%>" + <input type="button" class="btn cbi-button cbi-button-apply" id="btn_action" name="action" value="<%:Reload%>" onclick="button_action(this)" /> <span id="btn_action_spinner" class="btn_spinner"></span> - <input type="button" class="cbi-button cbi-button-reset" id="btn_stop" name="stop" value="<%:Stop%>" + <input type="button" class="btn cbi-button cbi-button-reset" id="btn_stop" name="stop" value="<%:Stop%>" onclick="button_action(this)" /> <span id="btn_stop_spinner" class="btn_spinner"></span> - - - - - <input type="button" class="cbi-button cbi-button-apply" id="btn_enable" name="enable" value="<%:Enable%>" +   +   +   +   + <input type="button" class="btn cbi-button cbi-button-apply" id="btn_enable" name="enable" value="<%:Enable%>" onclick="button_action(this)" /> <span id="btn_enable_spinner" class="btn_spinner"></span> - <input type="button" class="cbi-button cbi-button-reset" id="btn_disable" name="disable" value="<%:Disable%>" + <input type="button" class="btn cbi-button cbi-button-reset" id="btn_disable" name="disable" value="<%:Disable%>" onclick="button_action(this)" /> <span id="btn_disable_spinner" class="btn_spinner"></span> </div> -</div> +<%+cbi/valuefooter%> <%-if not btn_start_status then%> <script type="text/javascript">document.getElementById("btn_start").disabled = true;</script> diff --git a/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm b/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm index c453428405..b02c7faa82 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm +++ b/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm @@ -5,6 +5,8 @@ This is free software, licensed under the Apache License, Version 2.0 <%+cbi/valueheader%> -<input name="status" id="status" type="text" class="cbi-input-text" style="outline:none;border:none;box-shadow:none;background:transparent;font-weight:bold;line-height:30px;height:30px;width:50em;" value="<%=self:cfgvalue(section)%>" disabled="disabled" /> +<div style="font-weight:bold;"> + <%=self:cfgvalue(section):gsub('\n', '<br />' )%> +</div> <%+cbi/valuefooter%> diff --git a/applications/luci-app-https-dns-proxy/po/ar/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/ar/https-dns-proxy.po index 316823291e..5b869f85d3 100644 --- a/applications/luci-app-https-dns-proxy/po/ar/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/ar/https-dns-proxy.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-09 06:17+0000\n" -"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n" +"PO-Revision-Date: 2021-03-08 13:04+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/ar/>\n" "Language: ar\n" @@ -9,12 +9,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -23,8 +31,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -63,38 +143,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "إعدادات" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" +msgstr "تعطيل" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" -msgstr "ممكن" +msgstr "شغل" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -103,34 +267,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "بوابة الاستماع" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "جار التحميل" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -139,8 +350,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -161,54 +376,88 @@ msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" -msgstr "" +msgstr "إعادة تحميل" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" -msgstr "" +msgstr "بداية" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 msgid "Stop" -msgstr "" +msgstr "قف" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" +msgstr "توقفت" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" -msgstr "" +msgstr "معطل" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/bg/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/bg/https-dns-proxy.po index babbf5c0af..d6a35eecfe 100644 --- a/applications/luci-app-https-dns-proxy/po/bg/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/bg/https-dns-proxy.po @@ -1,13 +1,27 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-09-22 00:01+0000\n" +"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n" +"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/bg/>\n" "Language: bg\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Конфигурация" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" +msgstr "Забрани" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" +msgstr "Разрешаване" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" +msgstr "Зареждане" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +417,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/bn_BD/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/bn_BD/https-dns-proxy.po index 692e659701..e7778be032 100644 --- a/applications/luci-app-https-dns-proxy/po/bn_BD/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/bn_BD/https-dns-proxy.po @@ -1,13 +1,27 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-10-08 17:53+0000\n" +"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n" +"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationshttps-dns-proxy/bn_BD/>\n" "Language: bn_BD\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "কনফিগারেশন" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" +msgstr "সক্রিয় করুন" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "শোনার পোর্ট" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,52 +377,86 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" -msgstr "" +msgstr "শুরু করুন" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/ca/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/ca/https-dns-proxy.po index 3fa0c1144f..25d1901031 100644 --- a/applications/luci-app-https-dns-proxy/po/ca/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/ca/https-dns-proxy.po @@ -1,13 +1,27 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-09-17 06:52+0000\n" +"Last-Translator: Roger Pueyo Centelles <weblate@rogerpueyo.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/ca/>\n" "Language: ca\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -154,24 +375,40 @@ msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" -msgstr "" +msgstr "Torna a carregar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +417,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" -msgstr "" +msgstr "deshabilitat" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/cs/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/cs/https-dns-proxy.po index 44563ad902..206d4929ca 100644 --- a/applications/luci-app-https-dns-proxy/po/cs/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/cs/https-dns-proxy.po @@ -1,29 +1,109 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-02 09:02+0000\n" -"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Adam Salač <adam@salac.me>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/cs/>\n" "Language: cs\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH na %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" +msgstr "%s není nainstalován nebo nenalezen" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" -msgstr "" +msgstr "AdGuard (ochrana rodiny)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Nastavení" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Povolit" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Více informací o dalších možnostech" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -102,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Instance" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Naslouchající adresa" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Naslouchající port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,9 +349,13 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -162,56 +377,99 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" -msgstr "" +msgstr "Start" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 msgid "Stop" -msgstr "" +msgstr "Zastavit" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "a" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" +#~ msgid "Listen address" +#~ msgstr "Naslouchající adresa" + +#~ msgid "Listen port" +#~ msgstr "Naslouchající port" + +#~ msgid "Proxy server" +#~ msgstr "Proxy server" + #~ msgid "DHCP and DNS" #~ msgstr "DHCP a DNS" diff --git a/applications/luci-app-https-dns-proxy/po/da/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/da/https-dns-proxy.po new file mode 100644 index 0000000000..f4c504bb01 --- /dev/null +++ b/applications/luci-app-https-dns-proxy/po/da/https-dns-proxy.po @@ -0,0 +1,490 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2022-02-10 14:24+0000\n" +"Last-Translator: drax red <drax@outlook.dk>\n" +"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/da/>\n" +"Language: da\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.11-dev\n" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH ved %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 +msgid "%s is not installed or not found" +msgstr "%s er ikke installeret eller ikke fundet" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 Secure DNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 +msgid "AdGuard (Family Protection)" +msgstr "AdGuard (Familiebeskyttelse)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 +msgid "AdGuard (Standard)" +msgstr "AdGuard (Standard)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - IT (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/New York (blokerer malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (konfigurerbar)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 +msgid "AliDNS - CN" +msgstr "AliDNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "Anvendt privatlivs-DNS - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "CFIEC Offentlig DNS (kun IPv6)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 +msgid "CIRA Canadian Shield (Family)" +msgstr "CIRA Canadian Shield (familie)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua:3 +msgid "CIRA Canadian Shield (Private)" +msgstr "CIRA Canadian Shield (privat)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua:3 +msgid "CIRA Canadian Shield (Protected)" +msgstr "CIRA canadiske skjold (beskyttet)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 +msgid "CleanBrowsing (Adult Filter)" +msgstr "CleanBrowsing (voksenfilter)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 +msgid "CleanBrowsing (Family Filter)" +msgstr "CleanBrowsing (familiefilter)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 +msgid "CleanBrowsing (Security Filter)" +msgstr "CleanBrowsing (sikkerhedsfilter)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 +msgid "Cloudflare" +msgstr "Cloudflare" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua:3 +msgid "Cloudflare (Family Protection)" +msgstr "Cloudflare (familiebeskyttelse)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua:3 +msgid "Cloudflare (Security Protection)" +msgstr "Cloudflare (sikkerhedsbeskyttelse)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "Comss.ru DNS (øst)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "Comss.ru DNS (vest)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Konfiguration" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (Bloker Malware + Annoncer + Social)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD (bloker malware + annoncer)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (bloker malware)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (familie)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (ufiltreret)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "DNS til familien" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 +msgid "DNS HTTPS Proxy" +msgstr "DNS HTTPS Proxy" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +msgid "DNS HTTPS Proxy Settings" +msgstr "DNS HTTPS-proxyindstillinger" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 +msgid "DNS.SB" +msgstr "DNS.SB" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 +msgid "DNSPod Public DNS - CN" +msgstr "DNSPod Offentlig DNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "DNSlify DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "DSCP kodepunkt" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "DeCloudUs DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "Digitale Gesellschaft - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 +msgid "Disable" +msgstr "Deaktiver" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Opdater ikke konfigurationer" + +#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 +msgid "Enable" +msgstr "Aktiver" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "FFMUC DNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 +msgid "For more information on different options check" +msgstr "For mere information om forskellige indstillinger tjek" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Tving router DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Tving routerens DNS-server til alle lokale enheder" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Tvinger routerens DNS-brug på lokale enheder, også kendt som DNS-kapring." + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 +msgid "Google" +msgstr "Google" + +#: applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json:3 +msgid "Grant UCI and file access for luci-app-https-dns-proxy" +msgstr "Giv UCI- og filadgang til luci-app-https-dns-proxy" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Hurricane Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "IDNet.net - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "IIJ Offentlig DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" +"Hvis opdateringsindstillingen er valgt, vil afsnittet 'DNS-videresendelser' " +"i %sDHCP og DNS%s automatisk blive opdateret til at bruge udvalgte DoH-" +"udbydere (%smore information%s)." + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 +msgid "Instances" +msgstr "Instanser" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "Lelux DNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "Lad lokale enheder bruge deres egne DNS-servere, hvis de er indstillet" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 +msgid "LibreDNS - GR" +msgstr "LibreDNS - GR" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 +msgid "LibreDNS - GR (No Ads)" +msgstr "LibreDNS - GR (ingen reklamer)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "Lyt adresse" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Lytteport" + +#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 +msgid "Loading" +msgstr "Indlæser" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (konfigurerbar)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 +msgid "ODVR (nic.cz)" +msgstr "ODVR (nic.cz)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "OSZX DNS (Pumplex)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "OSZX DNS - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 +msgid "OpenDNS" +msgstr "OpenDNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua:3 +msgid "OpenDNS (Family Shield)" +msgstr "OpenDNS (Family Shield)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "Proxy Server" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "Quad 101 - TW" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 +msgid "Quad 9 (Recommended)" +msgstr "Quad 9 (anbefalet)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 +msgid "Quad 9 (Secured with ECS Support)" +msgstr "Quad 9 (sikret med ECS-understøttelse)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 +msgid "Quad 9 (Secured)" +msgstr "Quad 9 (sikret)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 +msgid "Quad 9 (Unsecured)" +msgstr "Quad 9 (usikret)" + +#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 +msgid "Reload" +msgstr "Genindlæs" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 +msgid "Resolver" +msgstr "Resolver" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "Restena DNS - LU" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "Rethink DNS (konfigurerbar)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "Seby DNS - AU" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Tjeneste kontrol" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 +msgid "Service Status" +msgstr "Servicestatus" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 +msgid "Service Status [%s %s]" +msgstr "Tjenestestatus [%s %s]" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "Snopyta DNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 +msgid "Start" +msgstr "Start" + +#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 +msgid "Stop" +msgstr "Stop" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 +msgid "Stopped" +msgstr "Stoppet" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "Switch DNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "Tiarap Offentlig DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "Tiarap Offentlig DNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 +msgid "Unknown Provider" +msgstr "Ukendt udbyder" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 +msgid "Update %s config" +msgstr "Opdater %s konfiguration" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Opdater DNSMASQ Config på Start/Stop" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Opdater alle konfigurationer" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 +msgid "and" +msgstr "og" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 +msgid "disabled" +msgstr "deaktiveret" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 +msgid "rubyfish.cn" +msgstr "rubyfish.cn" + +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNSPod.cn Offentlig DNS" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (UK)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (ingen annoncer)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Taiwan)" diff --git a/applications/luci-app-https-dns-proxy/po/de/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/de/https-dns-proxy.po index 67b0618a75..c485510ed4 100644 --- a/applications/luci-app-https-dns-proxy/po/de/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/de/https-dns-proxy.po @@ -1,19 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-20 07:11+0000\n" -"Last-Translator: ce4 <chregger@gmail.com>\n" +"PO-Revision-Date: 2021-10-13 19:44+0000\n" +"Last-Translator: Jan Kindler <j.e.g.kindler@gmail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/de/>\n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0.2-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH auf %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s ist nicht installiert oder konnte nicht gefunden werden" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (Familienschutz)" @@ -22,8 +30,80 @@ msgstr "AdGuard (Familienschutz)" msgid "AdGuard (Standard)" msgstr "AdGuard (Standard)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Konfiguration" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" -msgstr "" +msgstr "DNS HTTPS-Proxy" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" -msgstr "" +msgstr "DNS HTTPS-Proxy Einstellungen" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Deaktivieren" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Konfiguration nicht aktualisieren" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Aktivieren" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Weitere Informationen zu den verschiedenen Optionen finden Sie unter" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -102,34 +266,81 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Instanzen" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (werbefrei)" +msgid "LibreDNS - GR (No Ads)" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Listen-Adresse" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Listen-Port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Lade" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,9 +349,13 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "Proxyserver" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -160,24 +375,40 @@ msgstr "Quad 9 (ungesichert)" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" -msgstr "Neu laden" +msgstr "Neu laden" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Resolver" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "Läuft: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Dienststatus" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Servicestatus [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Start" @@ -186,32 +417,74 @@ msgstr "Start" msgid "Stop" msgstr "Stopp" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Angehalten" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Unbekannter Anbieter" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "und" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "deaktiviert" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (werbefrei)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Läuft: %s DoH at %s:%s" + +#~ msgid "Listen address" +#~ msgstr "Listen-Adresse" + +#~ msgid "Listen port" +#~ msgstr "Listen-Port" + +#~ msgid "Proxy server" +#~ msgstr "Proxyserver" + #~ msgid "EDNS client subnet" #~ msgstr "EDNS-Clientsubnetz" diff --git a/applications/luci-app-https-dns-proxy/po/el/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/el/https-dns-proxy.po index abbed71305..820eb268f8 100644 --- a/applications/luci-app-https-dns-proxy/po/el/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/el/https-dns-proxy.po @@ -1,19 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-03 08:25+0000\n" -"Last-Translator: Tavaninja <metalcorpe@gmail.com>\n" +"PO-Revision-Date: 2020-12-01 16:16+0000\n" +"Last-Translator: Marios Koutsoukis <marioskoutsoukis2006@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationshttps_dns_proxy/el/>\n" +"luciapplicationshttps-dns-proxy/el/>\n" "Language: el\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -22,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" +msgstr "Ενεργοποίηση" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -102,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Φόρτωση" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -162,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -186,28 +417,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/en/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/en/https-dns-proxy.po index 12c9b228a3..196d135703 100644 --- a/applications/luci-app-https-dns-proxy/po/en/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/en/https-dns-proxy.po @@ -1,13 +1,27 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-01-07 17:03+0000\n" +"Last-Translator: Liao junchao <liaojunchao@outlook.com>\n" +"Language-Team: English <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/en/>\n" "Language: en\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.4.1-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Configuration" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +417,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/es/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/es/https-dns-proxy.po index 43d8f85b8b..047ff61dfb 100644 --- a/applications/luci-app-https-dns-proxy/po/es/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/es/https-dns-proxy.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-08-31 09:01+0000\n" +"PO-Revision-Date: 2022-01-31 14:55+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/es/>\n" @@ -11,12 +11,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.11-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH en %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s no está instalado o no se encuentra" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (Protección familiar)" @@ -25,9 +33,82 @@ msgstr "AdGuard (Protección familiar)" msgid "AdGuard (Standard)" msgstr "AdGuard (estándar)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - TI (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - EE. UU./Chicago (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - EE. UU./Los Ángeles (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - EE. UU./Nueva York (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (Configurable)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "AliDNS" +msgid "AliDNS - CN" +msgstr "AliDNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +#, fuzzy +msgid "Applied Privacy DNS - AT/DE" +msgstr "Privacidad aplicada DNS - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "DNS público de CFIEC (sólo IPv6)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" @@ -65,38 +146,124 @@ msgstr "Cloudflare (Protección Familiar)" msgid "Cloudflare (Security Protection)" msgstr "Cloudflare (Protección de Seguridad)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "Comss.ru DNS (Este)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "Comss.ru DNS (Oeste)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Configuración" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (Bloqueo de Malware + Anuncios + Social)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD (Bloqueo de Malware + Anuncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (Bloqueo de malware)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (Familiar)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (Sin filtrar)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "DNS para la familia" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "Proxy DNS HTTPS" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "Configuración de proxy HTTPS de DNS" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "DNS público DNSPod.cn" +msgid "DNSPod Public DNS - CN" +msgstr "DNS público DNSPod - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "DNS DNSlify" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "Punto de código DSCP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "DNS de DeCloudUs" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Sociedad digital" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "Digitale Gesellschaft - CH" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Desactivar" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "No actualizar las configuraciones" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Activar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "FFMUC DNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Para obtener más información sobre diferentes opciones, consulte" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Forzar al DNS del enrutador" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Forzar al servidor DNS del enrutador a todos los dispositivos locales" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Fuerza el uso de DNS del enrutador en dispositivos locales, también conocido " +"como secuestro de DNS." + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -105,34 +272,86 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "Conceder acceso UCI y a archivos para luci-app-https-dns-proxy" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Hurricane Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" +"Si se selecciona la opción de actualización, la sección 'Reenvíos de DNS' de " +"%sDHCP y DNS%s se actualizará automáticamente para usar proveedores de DoH " +"seleccionados (%smore information%s)." + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Instancias" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Permita que los dispositivos locales usen sus propios servidores DNS si " +"están configurados" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (Sin anuncios)" +msgid "LibreDNS - GR (No Ads)" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Escuchar dirección" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "Dirección de escucha" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Puerto" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Puerto de escucha" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Cargando" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (Configurable)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "OpenDNS" @@ -141,10 +360,14 @@ msgstr "OpenDNS" msgid "OpenDNS (Family Shield)" msgstr "OpenDNS (Escudo familiar)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" msgstr "Servidor proxy" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" msgstr "Quad 9 (recomendado)" @@ -165,22 +388,38 @@ msgstr "Quad 9 (No asegurado)" msgid "Reload" msgstr "Recargar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Resolvedor" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "Ejecutando: %s DoH en %s: %s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Control de servicio" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Estado del servicio" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Estado del servicio [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Iniciar" @@ -189,34 +428,102 @@ msgstr "Iniciar" msgid "Stop" msgstr "Detener" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Detenido" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Proveedor desconocido" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" -"Cuando agrega/elimina las instancias a continuación, se utilizarán para " -"anular la sección 'Reenvíos DNS' de %sDHCP y DNS%s." +msgid "Update %s config" +msgstr "Actualizar la configuración de %s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Actualizar la configuración de DNSMASQ al iniciar/detener" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Actualizar todas las configuraciones" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "y" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" -msgstr "desactivado" +msgstr "Desactivado" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNS público DNSPod.cn" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Sociedad digital" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (UK)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (Sin anuncios)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Taiwán)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Ejecutando: %s DoH en %s: %s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "Si se selecciona actualizar la configuración de DNSMASQ, cuando agregue/" +#~ "elimine cualquier instancia a continuación, se usarán para anular la " +#~ "sección 'Reenvíos de DNS' de %sDHCP y DNS%s (%sinformacións more%s)." + +#~ msgid "Listen address" +#~ msgstr "Escuchar dirección" + +#~ msgid "Listen port" +#~ msgstr "Puerto" + +#~ msgid "Proxy server" +#~ msgstr "Servidor proxy" + +#~ msgid "" +#~ "When you add/remove any instances below, they will be used to override " +#~ "the 'DNS forwardings' section of %sDHCP and DNS%s." +#~ msgstr "" +#~ "Cuando agrega/elimina las instancias a continuación, se utilizarán para " +#~ "anular la sección 'Reenvíos DNS' de %sDHCP y DNS%s." + #~ msgid "Alidns" #~ msgstr "Alidns" diff --git a/applications/luci-app-https-dns-proxy/po/fi/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/fi/https-dns-proxy.po index 050a3016fd..61a72b5582 100644 --- a/applications/luci-app-https-dns-proxy/po/fi/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/fi/https-dns-proxy.po @@ -1,19 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-23 07:41+0000\n" -"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" +"PO-Revision-Date: 2021-06-18 19:32+0000\n" +"Last-Translator: Demian Wright <wright.demian+weblate@gmail.com>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/fi/>\n" "Language: fi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.7\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -22,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Kokoonpano" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Poista käytöstä" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Ota käyttöön" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -102,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Kuunteluportti" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Ladataan" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -162,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Aloita" @@ -186,28 +417,49 @@ msgstr "Aloita" msgid "Stop" msgstr "Pysäytä" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "pois käytöstä" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" + +#~ msgid "Listen port" +#~ msgstr "Kuunteluportti" diff --git a/applications/luci-app-https-dns-proxy/po/fr/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/fr/https-dns-proxy.po index 1f71e5388c..61ff3924ce 100644 --- a/applications/luci-app-https-dns-proxy/po/fr/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/fr/https-dns-proxy.po @@ -1,18 +1,26 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-22 19:41+0000\n" -"Last-Translator: anonymous <noreply@weblate.org>\n" +"PO-Revision-Date: 2021-04-11 16:27+0000\n" +"Last-Translator: SRay <seb@isostorm.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/fr/>\n" "Language: fr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.0.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH à %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" -msgstr "%s n'a pas été trouvé ou installé" +msgstr "%s n'est pas installé ou introuvable" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" @@ -22,8 +30,80 @@ msgstr "AdGuard (protection de la famille)" msgid "AdGuard (Standard)" msgstr "AdGuard (Standard)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Configuration" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Société Digitale" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Désactiver" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Activer" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Pour plus d'informations sur les différentes options, consultez" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -102,34 +266,81 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Instances" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (sans publicité)" +msgid "LibreDNS - GR (No Ads)" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Adresse d'écoute" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Puerto de escucha" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Port d'écoute" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Chargement" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,9 +349,13 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "Serveur proxy" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -162,22 +377,38 @@ msgstr "Quad 9 (non sécurisé)" msgid "Reload" msgstr "Recharger" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Résolveur" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "Exécution : %s DoH à %s :%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Statut du service" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "État du service [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Démarrer" @@ -186,32 +417,71 @@ msgstr "Démarrer" msgid "Stop" msgstr "Arrêter" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Arrêté" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Proveedor desconocido" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "et" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "désactivé" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Société Digitale" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (sans publicité)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Exécution : %s DoH à %s :%s" + +#~ msgid "Listen address" +#~ msgstr "Adresse d'écoute" + +#~ msgid "Listen port" +#~ msgstr "Puerto de escucha" + +#~ msgid "Proxy server" +#~ msgstr "Serveur proxy" + #~ msgid "EDNS client subnet" #~ msgstr "Sous-réseau client EDNS" diff --git a/applications/luci-app-https-dns-proxy/po/he/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/he/https-dns-proxy.po index b9b9d36e21..04d3c72086 100644 --- a/applications/luci-app-https-dns-proxy/po/he/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/he/https-dns-proxy.po @@ -4,10 +4,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +24,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +136,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +260,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +343,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,22 +371,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +411,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/hi/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/hi/https-dns-proxy.po index 3fc9e6fffb..e54612a0db 100644 --- a/applications/luci-app-https-dns-proxy/po/hi/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/hi/https-dns-proxy.po @@ -4,10 +4,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +24,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +136,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +260,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +343,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,22 +371,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +411,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/hu/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/hu/https-dns-proxy.po index e812bed3d4..c3e71cb019 100644 --- a/applications/luci-app-https-dns-proxy/po/hu/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/hu/https-dns-proxy.po @@ -1,17 +1,25 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-01-01 23:07+0000\n" -"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n" +"PO-Revision-Date: 2021-08-16 10:33+0000\n" +"Last-Translator: Bence Csókás <bence.csokas@gmail.com>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/hu/>\n" "Language: hu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.8-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" +msgstr "%s nincs telepítve vagy nem található" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 @@ -22,8 +30,80 @@ msgstr "AdGuard (családvédelem)" msgid "AdGuard (Standard)" msgstr "AdGuard (szabványos)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,39 +142,123 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Beállítás" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Letiltás" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Engedélyezés" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" "A különböző beállításokkal kapcsolatos további információkért nézze meg" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -103,34 +267,81 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Példányok" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Cím figyelése" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Port figyelése" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Betöltés" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -139,9 +350,13 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "Proxy-kiszolgáló" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -163,20 +378,37 @@ msgstr "Quad 9 (nem biztonságos)" msgid "Reload" msgstr "Újratöltés" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Feloldó" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Szolgáltatás állapota" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 +#, fuzzy msgid "Service Status [%s %s]" +msgstr "Szolgáltatás státusz [%s %s]" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 @@ -185,34 +417,64 @@ msgstr "Indítás" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 msgid "Stop" -msgstr "Leállítás" +msgstr "Megállítás" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" -msgstr "Leállítva" +msgstr "Megállítva" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Ismeretlen szolgáltató" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "és" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "Listen address" +#~ msgstr "Cím figyelése" + +#~ msgid "Listen port" +#~ msgstr "Port figyelése" + +#~ msgid "Proxy server" +#~ msgstr "Proxy-kiszolgáló" + #~ msgid "EDNS client subnet" #~ msgstr "EDNS ügyfélalhálózat" diff --git a/applications/luci-app-https-dns-proxy/po/it/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/it/https-dns-proxy.po index c9cbf7b4c4..150102a24c 100644 --- a/applications/luci-app-https-dns-proxy/po/it/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/it/https-dns-proxy.po @@ -1,19 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-03-07 12:33+0000\n" -"Last-Translator: Giuseppe Valitutto <valituttogiuseppe@gmail.com>\n" +"PO-Revision-Date: 2021-09-15 08:34+0000\n" +"Last-Translator: pisquan8 <cimurro@outlook.de>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/it/>\n" "Language: it\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -22,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Configurazione" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Disabilita" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Abilita" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -102,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Caricamento" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -162,53 +377,87 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" -msgstr "" +msgstr "Avvia" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/ja/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/ja/https-dns-proxy.po index 6fba629643..ee90d5789f 100644 --- a/applications/luci-app-https-dns-proxy/po/ja/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/ja/https-dns-proxy.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-22 08:29+0000\n" +"PO-Revision-Date: 2021-04-14 13:49+0000\n" "Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/ja/>\n" @@ -8,12 +8,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s は未インストールかまたは見つかりません" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -22,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "設定" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "DNS HTTPS プロキシ設定" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "無効" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" -msgstr "有効" +msgstr "有効化" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "ルーターDNSの強制" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "全ローカル デバイスにルーター DNSサーバーの使用を強制" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -102,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "luci-app-https-dns-proxy に UCI およびファイルのアクセスを許可" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "インスタンス" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "DNSサーバーの使用を強制しない" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "待ち受けアドレス" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "待ち受けポート" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "リッスンポート" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "読み込み中" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,9 +349,13 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "プロキシ・サーバー" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -162,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "リロード" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "リゾルバー" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "サービス ステータス" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "サービス・ステータス [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "開始" @@ -186,28 +417,55 @@ msgstr "開始" msgid "Stop" msgstr "停止" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "停止済" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "不明なプロバイダー" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "および" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "無効" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" + +#~ msgid "Listen address" +#~ msgstr "リッスンアドレス" + +#~ msgid "Listen port" +#~ msgstr "リッスンポート" + +#~ msgid "Proxy server" +#~ msgstr "プロキシ・サーバー" diff --git a/applications/luci-app-https-dns-proxy/po/ko/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/ko/https-dns-proxy.po index 93c7dd4488..062b73bc2f 100644 --- a/applications/luci-app-https-dns-proxy/po/ko/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/ko/https-dns-proxy.po @@ -1,23 +1,109 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-06-07 10:49+0000\n" +"Last-Translator: orangepizza <abnoeh@mail.com>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" +msgstr "%s가 설치되지 않았거나 찾을 수 없습니다" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" -msgstr "" +msgstr "AdGuard (자녀보호)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 msgid "AdGuard (Standard)" +msgstr "AdGuard (일반)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +417,49 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" + +#~ msgid "AliDNS" +#~ msgstr "AliDNS" diff --git a/applications/luci-app-https-dns-proxy/po/mr/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/mr/https-dns-proxy.po index a05dfa25b8..44c5384e22 100644 --- a/applications/luci-app-https-dns-proxy/po/mr/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/mr/https-dns-proxy.po @@ -10,10 +10,18 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "अॅडगार्ड (कौटुंबिक संरक्षण)" @@ -22,8 +30,80 @@ msgstr "अॅडगार्ड (कौटुंबिक संरक्ष msgid "AdGuard (Standard)" msgstr "अॅडगार्ड (मानक)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "डीएनएस.एसबी" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "डिजिटेल गसेल्सशाफ्ट" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "अक्षम करा" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "सक्षम करा" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "वेगवेगळ्या पर्यायांवर अधिक माहितीसाठी तपासा" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "गूगल" @@ -102,34 +266,81 @@ msgstr "गूगल" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "उदाहरणे" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "ऐकण्याचा पत्ता" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "ऐकण्याचा पत्ता" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "लोड करीत आहे" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,9 +349,13 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "प्रॉक्सी सर्व्हर" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -162,22 +377,38 @@ msgstr "Quad 9 (असुरक्षित)" msgid "Reload" msgstr "रीलोड करा" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "निराकरणकर्ता" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "सेवा स्थिती" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "प्रारंभ करा" @@ -186,32 +417,62 @@ msgstr "प्रारंभ करा" msgid "Stop" msgstr "थांबा" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "बंद" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "अज्ञात प्रदाता" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "आणि" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "Digitale Gesellschaft" +#~ msgstr "डिजिटेल गसेल्सशाफ्ट" + +#~ msgid "Listen address" +#~ msgstr "ऐकण्याचा पत्ता" + +#~ msgid "Listen port" +#~ msgstr "ऐकण्याचा पत्ता" + +#~ msgid "Proxy server" +#~ msgstr "प्रॉक्सी सर्व्हर" + #~ msgid "EDNS client subnet" #~ msgstr "ईडीएनएस क्लायंट सबनेट" diff --git a/applications/luci-app-https-dns-proxy/po/ms/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/ms/https-dns-proxy.po index c8d46b3d33..640d16ba89 100644 --- a/applications/luci-app-https-dns-proxy/po/ms/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/ms/https-dns-proxy.po @@ -1,13 +1,27 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-03-31 12:26+0000\n" +"Last-Translator: Faruki Ramly <farukiramly45@gmail.com>\n" +"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/ms/>\n" "Language: ms\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Konfigurasi" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +417,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po index 862835c610..08c4d0ca66 100644 --- a/applications/luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po @@ -1,11 +1,25 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-11-22 19:53+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/nb_NO/>\n" "Language: nb_NO\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.10-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" +msgstr "%s er ikke installert, eller ble ikke funnet" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 @@ -16,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Oppsett" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" +msgstr "Skru av" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" +msgstr "Skru på" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 +msgid "LibreDNS - GR" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 +msgid "LibreDNS - GR (No Ads)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "Lytteadresse" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Lytteport" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" +msgstr "Laster inn" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,76 +349,117 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" -msgstr "" +msgstr "Quad 9 (anbefalt)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 msgid "Quad 9 (Secured with ECS Support)" -msgstr "" +msgstr "Quad 9 (sikret med ECS-støtte)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 msgid "Quad 9 (Secured)" -msgstr "" +msgstr "Quad 9 (sikret)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 msgid "Quad 9 (Unsecured)" -msgstr "" +msgstr "Quad 9 (usikret)" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" -msgstr "" +msgstr "Last inn igjen" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 -msgid "Service Status" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Tjenestekontroll" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 +msgid "Service Status" +msgstr "Tjenestestatus" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" +msgstr "Tjenestestatus [%s %s]" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" -msgstr "" +msgstr "Start" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 msgid "Stop" -msgstr "" +msgstr "Stopp" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" +msgstr "Stoppet" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 -msgid "Unknown Provider" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 +msgid "Unknown Provider" +msgstr "Ukjent tilbyder" + #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (reklamefri)" diff --git a/applications/luci-app-https-dns-proxy/po/pl/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/pl/https-dns-proxy.po index 7d12fd028a..bdc38739fd 100644 --- a/applications/luci-app-https-dns-proxy/po/pl/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/pl/https-dns-proxy.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-09-01 02:24+0000\n" -"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"PO-Revision-Date: 2022-01-11 05:19+0000\n" +"Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/pl/>\n" "Language: pl\n" @@ -9,12 +9,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.10.1\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH w %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s nie jest zainstalowany lub nie znaleziono" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 Secure DNS - CN" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (filtr rodzinny)" @@ -23,9 +31,81 @@ msgstr "AdGuard (filtr rodzinny)" msgid "AdGuard (Standard)" msgstr "AdGuard (standardowy)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - IT (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/Nowy Jork (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (konfigurowalny)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "AliDNS" +msgid "AliDNS - CN" +msgstr "AliDNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "Applied Privacy DNS - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "CFIEC Public DNS (tylko IPv6)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" @@ -63,38 +143,124 @@ msgstr "Cloudflare (filtr rodzinny)" msgid "Cloudflare (Security Protection)" msgstr "Cloudflare (filtr bezpieczeństwa)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "Comss.ru DNS (wschodni)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "Comss.ru DNS (zachodni)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Konfiguracja" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (blokuj złośliwe oprogramowanie + reklamy + społecznościowe)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD (blokuj złośliwe oprogramowanie + reklamy)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (blokuj złośliwe oprogramowanie)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (rodzinny)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (niefiltrowany)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "DNS for Family" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "DNS HTTPS Proxy" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "Ustawienia DNS HTTPS Proxy" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "DNSPod.cn Publiczny DNS" +msgid "DNSPod Public DNS - CN" +msgstr "DNSPod Public DNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "DNSlify DNS" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "Punkt kodowy DSCP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "DeCloudUs DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "Digitale Gesellschaft - CH" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Wyłącz" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Nie aktualizuj konfiguracji" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Włącz" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "FFMUC DNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Aby uzyskać więcej informacji o różnych opcjach, sprawdź" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Wymuś DNS routera" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Wymuś serwer DNS routera na wszystkich urządzeniach lokalnych" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Wymusza użycie DNS routera na urządzeniach lokalnych, znane również jako DNS " +"Hijacking." + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -103,34 +269,85 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "Udziel dostępu UCI i plikom do luci-app-https-dns-proxy" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Hurricane Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "IDNet.net - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "IIJ Public DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" +"Jeśli opcja aktualizacji jest wybrana, sekcja 'Przekazywania DNS' w %sDHCP i " +"DNS%s zostanie automatycznie zaktualizowana, aby używać wybranych dostawców " +"DoH (%swięcej informacji%s)." + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Instancje" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "Lelux DNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Pozwól lokalnym urządzeniom używać własnych serwerów DNS, jeśli są ustawione" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "LibreDNS - GR" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (bez reklam)" +msgid "LibreDNS - GR (No Ads)" +msgstr "LibreDNS - GR (bez reklam)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "Nasłuchiwany adres" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Nasłuchiwany port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Port nasłuchu" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Ładowanie" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (bloker reklam)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (konfigurowalny)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "OSZX DNS (Pumplex)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "OSZX DNS - UK" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "OpenDNS" @@ -139,10 +356,14 @@ msgstr "OpenDNS" msgid "OpenDNS (Family Shield)" msgstr "OpenDNS (filtr rodzinny)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" msgstr "Serwer proxy" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "Quad 101 - TW" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" msgstr "Quad 9 (zalecany)" @@ -163,22 +384,38 @@ msgstr "Quad 9 (niezabezpieczony)" msgid "Reload" msgstr "Przeładuj" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Dostawca" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "Uruchomione: %s DoH w %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "Restena DNS - LU" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "Rethink DNS (konfigurowalny)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "Seby DNS - AU" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Kontrola usług" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Status usługi" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Stan usługi [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "Snopyta DNS - FI" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Uruchom" @@ -187,34 +424,102 @@ msgstr "Uruchom" msgid "Stop" msgstr "Zatrzymaj" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Zatrzymany" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "Switch DNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "Tiarap Public DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "Tiarap Public DNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Nieznany dostawca" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" -"Po dodaniu/usunięciu instancji, zostaną one użyte do nadpisania " -"'Przekazywania DNS' w sekcji %sDHCP i DNS%s." +msgid "Update %s config" +msgstr "Zaktualizuj konfigurację %s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Zaktualizuj konfigurację DNSMASQ przy uruchamianiu i zatrzymywaniu" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Zaktualizuj wszystkie konfiguracje" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "i" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "wyłączony" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNSPod.cn Publiczny DNS" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (UK)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (bez reklam)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Taiwan)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Uruchomione: %s DoH w %s:%s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "Jeśli wybrano aktualizację konfiguracji DNSMASQ, po dodaniu lub usunięciu " +#~ "poniższych instancji zostaną one użyte do zastąpienia sekcji " +#~ "„Przekazywania DNS” w %sDHCP oraz DNS%s (%swięcej informacji%s)." + +#~ msgid "Listen address" +#~ msgstr "Nasłuchiwany adres" + +#~ msgid "Listen port" +#~ msgstr "Nasłuchiwany port" + +#~ msgid "Proxy server" +#~ msgstr "Serwer proxy" + +#~ msgid "" +#~ "When you add/remove any instances below, they will be used to override " +#~ "the 'DNS forwardings' section of %sDHCP and DNS%s." +#~ msgstr "" +#~ "Po dodaniu/usunięciu instancji, zostaną one użyte do nadpisania " +#~ "'Przekazywania DNS' w sekcji %sDHCP i DNS%s." + #~ msgid "Alidns" #~ msgstr "Alidns" diff --git a/applications/luci-app-https-dns-proxy/po/pt/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/pt/https-dns-proxy.po index feb836fb6d..2846f31f1e 100644 --- a/applications/luci-app-https-dns-proxy/po/pt/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/pt/https-dns-proxy.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-09-07 10:27+0000\n" +"PO-Revision-Date: 2022-01-12 11:22+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/pt/>\n" @@ -8,12 +8,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.10.1\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH em %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s não está instalado ou não foi encontrado" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 DNS Seguro - CN" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (Proteção da Família)" @@ -22,9 +30,81 @@ msgstr "AdGuard (Proteção da Família)" msgid "AdGuard (Standard)" msgstr "AdGuard (Padrão)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - TI (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/Nova Iorque (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (Configurável)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "AliDNS" +msgid "AliDNS - CN" +msgstr "AliDNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "DNS Público CFIEC (apenas IPv6)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" @@ -62,38 +142,124 @@ msgstr "Cloudflare (Proteção Da Família)" msgid "Cloudflare (Security Protection)" msgstr "Cloudflare (Proteção de Segurança)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "DNS Comss.ru (Leste)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "DNS Comss.ru (Oeste)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (bloquear malware + anúncios + social)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD (bloquear malware + anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (bloquear malware)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (família)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (sem filtro)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "Proxy HTTPS de DNS" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "Configurações de Proxy HTTPS de DNS" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "DNSPod.cn DNS público" +msgid "DNSPod Public DNS - CN" +msgstr "DNSPod Public DNS - CN" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "Codepoint DSCP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Desativar" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Não atualizar configs" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Ativar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Para obter mais informações sobre opções diferentes, verifique" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Forçar o DNS do Roteador" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Forçar o servidor de DNS do Roteador para todos os aparelhos locais" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Força o uso do DNS do Router em aparelhos locais, também conhecido como DNS " +"Hijacking." + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -102,34 +268,86 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "Conceder acesso a UCI e a ficheiros para luci-app-https-dns-proxy" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Hurricane Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" +"Se a opção de atualização estiver selecionada, a secção 'Encaminhamentos de " +"DNS' de %sDHCP e DNS%s será automaticamente atualizada para usar os " +"provedores de DoH selecionados (%smais informações%s)." + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Instâncias" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Deixe que os aparelhos locais usem os próprios servidores de DNS deles, se " +"definidos" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (Sem Anúncios)" +msgid "LibreDNS - GR (No Ads)" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "Endereço de escuta" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "Porta de escuta" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "A carregar" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "OpenDNS" @@ -138,10 +356,14 @@ msgstr "OpenDNS" msgid "OpenDNS (Family Shield)" msgstr "OpenDNS (Family Shield)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" msgstr "Servidor proxy" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" msgstr "Quad 9 (Recomendado)" @@ -162,22 +384,38 @@ msgstr "Quad 9 (Sem Segurança)" msgid "Reload" msgstr "Recarregar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Resolvedor" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "Executando: %s DoH em %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Controle de serviços" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Estado do Serviço" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Estado do Serviço [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Iniciar" @@ -186,35 +424,103 @@ msgstr "Iniciar" msgid "Stop" msgstr "Parar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Parado" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Provedor Desconhecido" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" -"Quando adiciona ou remove quaisquer das instâncias abaixo, elas serão " -"utilizadas para substituir a secção 'Encaminhamentos do DNS' de %sDHCP e DNS" -"%s." +msgid "Update %s config" +msgstr "Atualizar %s config" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Atualizar configuração do DNSMASQ ao Iniciar/Parar" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Atualizar todas as configs" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "e" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "desativado" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNSPod.cn DNS público" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (UK)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (Sem Anúncios)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Taiwan)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Executando: %s DoH em %s:%s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "Se a configuração do DNSMASQ estiver selecionada, ao adicionar/remover " +#~ "quaisquer instâncias abaixo, elas serão usadas para substituir a seção " +#~ "'encaminhamentos DNS' do %sDHCP e DNS%s (%smais informações%s)." + +#~ msgid "Listen address" +#~ msgstr "Endereço de escuta" + +#~ msgid "Listen port" +#~ msgstr "Porta de escuta" + +#~ msgid "Proxy server" +#~ msgstr "Servidor proxy" + +#~ msgid "" +#~ "When you add/remove any instances below, they will be used to override " +#~ "the 'DNS forwardings' section of %sDHCP and DNS%s." +#~ msgstr "" +#~ "Quando adiciona ou remove quaisquer das instâncias abaixo, elas serão " +#~ "utilizadas para substituir a secção 'Encaminhamentos do DNS' de %sDHCP e " +#~ "DNS%s." + #~ msgid "Alidns" #~ msgstr "Alidns" diff --git a/applications/luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po index 8c1a06596a..2edfa77120 100644 --- a/applications/luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-31 03:43+0000\n" +"PO-Revision-Date: 2022-01-11 05:19+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationshttps-dns-proxy/pt_BR/>\n" @@ -8,12 +8,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.10.1\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH em %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s não está instalado ou não foi encontrado" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 DNS Seguro - CN" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (Proteção Familiar)" @@ -22,9 +30,81 @@ msgstr "AdGuard (Proteção Familiar)" msgid "AdGuard (Standard)" msgstr "AdGuard (Padrão)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - TI (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/Nova York (Bloqueia Malware + Anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (Configurável)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "AliDNS" +msgid "AliDNS - CN" +msgstr "AliDNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "DNS de privacidade aplicada - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "CFIEC DNS Público (apenas IPv6)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" @@ -62,38 +142,124 @@ msgstr "Cloudflare (Proteção Familiar)" msgid "Cloudflare (Security Protection)" msgstr "Cloudflare (Proteção de Segurança)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "DNS Comss.ru (Leste)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "DNS Comss.ru (Oeste)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (Bloqueia malware + anúncios + social)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD (Bloqueia malware + anúncios)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (Bloqueia malware)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (Família)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (Sem filtro)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "DNS para família" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "Proxy DNS HTTPS" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "Configurações do Proxy DNS HTTPS" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "DNSPod.cn DNS Público" +msgid "DNSPod Public DNS - CN" +msgstr "DNS Público DNSPod - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "DNS DNSlify" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "Codepoint DSCP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "DeCloudUs DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "Digitale Gesellschaft - CH" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Desativar" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Não atualize as configurações" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Ativar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "DNS FFMUC - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Para obter mais informações sobre diferentes opções, verifique" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Impor o DNS do roteador" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Impõem o servidor de DNS do roteador para todos os dispositivos locais" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Impõem o uso do DNS do Roteador em dispositivos locais, também é conhecido " +"como DNS Hijacking." + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -102,34 +268,86 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "Conceda acesso ao arquivo e ao UCI para o luci-app-https-dns-proxy" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Hurricane Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "IDNet.net - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "IIJ DNS Público - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" +"Caso a opção de atualização seja selecionada, a seção 'Encaminhamentos do " +"DNS' de %sDHCP e DNS%s será atualizada automaticamente para usar os " +"provedores DoH selecionados (%smais informação%s)." + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Instâncias" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "DNS Lelux - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Deixe que os dispositivos locais usem os seus próprios servidores DNS caso " +"seja definido" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "LibreDNS - GR" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (Sem Ads)" +msgid "LibreDNS - GR (No Ads)" +msgstr "LibreDNS - GR (Sem anúncios)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Escutar endereço" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "Endereço de escuta" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "Porta de escuta" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Carregando" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (Configurável)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "DNS OSZX (Pumplex)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "DNS OSZX - UK" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "OpenDNS" @@ -138,10 +356,14 @@ msgstr "OpenDNS" msgid "OpenDNS (Family Shield)" msgstr "OpenDNS (Escudo Familiar)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" msgstr "Servidor proxy" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "Quad 101 - TW" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" msgstr "Quad 9 (Preferível)" @@ -162,22 +384,38 @@ msgstr "Quad 9 (Sem Segurança)" msgid "Reload" msgstr "Recarregar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Resolvedor" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "Em execução: %s DoH em %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "DNS Restena - LU" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "DNS Rethink (Configurável)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "DNS Seby - AU" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Controle do Serviço" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Condição do Serviço" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Condição Geral do Serviço [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "DNS Snopyta - FI" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Início" @@ -186,35 +424,103 @@ msgstr "Início" msgid "Stop" msgstr "Parar" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Parado" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "DNS Switch - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "DNS Público Tiarap - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "DNS Público Tiarap - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Provedor Desconhecido" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" -"Quando você adiciona ou remove quaisquer das instâncias abaixo, elas serão " -"utilizadas para substituir a seção 'Encaminhamentos do DNS' de %sDHCP e DNS" -"%s." +msgid "Update %s config" +msgstr "Atualize %s config" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Atualize a configuração do DNSMASQ ao Iniciar/Parar" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Atualize todas as configurações" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "e" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "desabilitado" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNSPod.cn DNS Público" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (UK)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (Sem Ads)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Taiwan)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Em execução: %s DoH em %s:%s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "Se a configuração do DNSMASQ for selecionada, quando você adicionar ou " +#~ "remover quaisquer instância abaixo, elas serão usadas para substituir a " +#~ "seção 'encaminhamentos DNS' do %sDHCP e DNS%s (%smais informações%s)." + +#~ msgid "Listen address" +#~ msgstr "Escutar endereço" + +#~ msgid "Listen port" +#~ msgstr "Porta de escuta" + +#~ msgid "Proxy server" +#~ msgstr "Servidor proxy" + +#~ msgid "" +#~ "When you add/remove any instances below, they will be used to override " +#~ "the 'DNS forwardings' section of %sDHCP and DNS%s." +#~ msgstr "" +#~ "Quando você adiciona ou remove quaisquer das instâncias abaixo, elas " +#~ "serão utilizadas para substituir a seção 'Encaminhamentos do DNS' de " +#~ "%sDHCP e DNS%s." + #~ msgid "Alidns" #~ msgstr "Alidns" diff --git a/applications/luci-app-https-dns-proxy/po/ro/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/ro/https-dns-proxy.po index a40a63bc9b..d9bd4669bb 100644 --- a/applications/luci-app-https-dns-proxy/po/ro/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/ro/https-dns-proxy.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-01-10 12:24+0000\n" -"Last-Translator: Alexandru Stan <alex9457sn@gmail.com>\n" +"PO-Revision-Date: 2022-01-12 23:11+0000\n" +"Last-Translator: Simona Iacob <s@zp1.net>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/ro/>\n" "Language: ro\n" @@ -9,206 +9,486 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.10.1\n" +"X-Generator: Weblate 4.10.1\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH la %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" -msgstr "" +msgstr "%s nu este instalat sau nu este găsit" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 DNS securizat - CN" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" -msgstr "" +msgstr "AdGuard (Protecția familiei)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 msgid "AdGuard (Standard)" -msgstr "" +msgstr "AdGuard (Standard)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (blochează programele malware și reclamele)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (blochează programele malware și reclamele)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (blochează programele malware + reclame)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - IT ( Anti-Malware + Ads)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - IT ( Anti-Malware + Ads)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO ( Anti-Malware + Ads)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL ( Anti Malware + Ads Block)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (Anti-Malware + Ads)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (Anti Malware + Ads)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/New York (Anti Malware + Ads)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (Configurabil)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "" +msgid "AliDNS - CN" +msgstr "AliDNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "Confidențialitate aplicată DNS - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "DNS public al CFIEC (numai pentru IPv6)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" -msgstr "" +msgstr "CIRA Canadian Shield (Familie)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua:3 msgid "CIRA Canadian Shield (Private)" -msgstr "" +msgstr "CIRA Canadian Shield (Privat)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua:3 msgid "CIRA Canadian Shield (Protected)" -msgstr "" +msgstr "CIRA Canadian Shield (protejat)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 msgid "CleanBrowsing (Adult Filter)" -msgstr "" +msgstr "CleanBrowsing (Filtru pentru adulți)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 msgid "CleanBrowsing (Family Filter)" -msgstr "" +msgstr "CleanBrowsing (Filtru de familie)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 msgid "CleanBrowsing (Security Filter)" -msgstr "" +msgstr "CleanBrowsing (Filtru de securitate)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 msgid "Cloudflare" -msgstr "" +msgstr "Cloudflare" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua:3 msgid "Cloudflare (Family Protection)" -msgstr "" +msgstr "Cloudflare (Protecția familiei)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua:3 msgid "Cloudflare (Security Protection)" -msgstr "" +msgstr "Cloudflare (Protecție de securitate)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "Comss.ru DNS (Est)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "Comss.ru DNS (Vest)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Configurație" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (blochează programele malware + reclame + social)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD (blochează programele malware și reclamele)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (blocarea programelor malware)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (Familia)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (Nefiltrat)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "DNS pentru familie" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "Forja DNS - DE" #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" -msgstr "" +msgstr "Proxy DNS HTTPS" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" -msgstr "" +msgstr "Setări DNS HTTPS Proxy" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" -msgstr "" +msgstr "DNS.SB" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "" +msgid "DNSPod Public DNS - CN" +msgstr "DNSPod Public DNS - CN" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "DNSlify DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "Punct de cod DSCP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "DNS DeCloudUs" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "Societatea digitală - CH" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" -msgstr "Dezactivează" +msgstr "Dezactivați" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Nu actualizați configurațiile" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" -msgstr "Activează" +msgstr "Activați" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "FFMUC DNS - DE" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" +msgstr "Pentru mai multe informații despre diferitele opțiuni, consultați" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Forțați DNS-ul routerului" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Forțați serverul DNS al Routerului pentru toate dispozitivele locale" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." msgstr "" +"Forțează utilizarea Router DNS pe dispozitivele locale, cunoscută și sub " +"numele de DNS Hijacking." #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" -msgstr "" +msgstr "Google" #: applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json:3 msgid "Grant UCI and file access for luci-app-https-dns-proxy" +msgstr "Acordă UCI și acces la fișiere pentru luci-app-https-dns-proxy" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Uragan Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "IDNet.net - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "IIJ Public DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." msgstr "" +"Dacă este selectată opțiunea de actualizare, secțiunea \"DNS forwardings\" " +"din %sDHCP și DNS%s va fi actualizată automat pentru a utiliza furnizorii " +"DoH selectați (%smore information%s)." -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" +msgstr "Instanțe" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "Lelux DNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" msgstr "" +"Permiteți dispozitivelor locale să utilizeze propriile servere DNS, dacă " +"sunt setate" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "" +msgid "LibreDNS - GR" +msgstr "LibreDNS - GR" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "" +msgid "LibreDNS - GR (No Ads)" +msgstr "LibreDNS - GR (Fără reclame)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "Ascultă adresa" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Port de ascultare" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Încărcare" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (Configurabil)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" -msgstr "" +msgstr "ODVR (nic.cz)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "DNS OSZX (Pumplex)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "OSZX DNS - MAREA BRITANIE" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" -msgstr "" +msgstr "DNS deschis" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua:3 msgid "OpenDNS (Family Shield)" -msgstr "" +msgstr "OpenDNS (Scutul familiei)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "Server Proxy" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "Cuadrant 101 - TW" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" -msgstr "" +msgstr "Quad 9 (Recomandat)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 msgid "Quad 9 (Secured with ECS Support)" -msgstr "" +msgstr "Quad 9 (Securizat cu sprijinul ECS)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 msgid "Quad 9 (Secured)" -msgstr "" +msgstr "Quad 9 (Securizat)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 msgid "Quad 9 (Unsecured)" -msgstr "" +msgstr "Quad 9 (Nesecurizat)" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" -msgstr "" +msgstr "Reîncărcare" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" -msgstr "" +msgstr "Rezolvare" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "DNS Restena - LU" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "Regândiți DNS (Configurabil)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "Seby DNS - AU" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Controlul serviciilor" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" -msgstr "" +msgstr "Starea serviciului" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" -msgstr "" +msgstr "Starea serviciului [%s %s]" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "DNS Snopyta - FI" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" -msgstr "Pornește" +msgstr "Porniți" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:47 msgid "Stop" -msgstr "" +msgstr "Opriți" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" -msgstr "" +msgstr "S-a oprit" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "Comutator DNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "Tiarap DNS Public - JP" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "Tiarap - DNS Public - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" -msgstr "" +msgstr "Furnizor necunoscut" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" +msgid "Update %s config" +msgstr "Actualizați configurația %s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Actualizarea configurației DNSMASQ la pornire/oprire" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Actualizarea tuturor configurațiilor" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" -msgstr "" +msgstr "și" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" -msgstr "" +msgstr "dezactivat" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" -msgstr "" +msgstr "rubyfish.cn" + +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNS public DNSPod.cn" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Societatea digitală" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (Marea Britanie)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (Fără reclame)" + +#~ msgid "NextDNS.io" +#~ msgstr "UrmătorulDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Taiwan)" diff --git a/applications/luci-app-https-dns-proxy/po/ru/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/ru/https-dns-proxy.po index cc3caff402..49e1ea3d1f 100644 --- a/applications/luci-app-https-dns-proxy/po/ru/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/ru/https-dns-proxy.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-09 00:10+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"PO-Revision-Date: 2021-09-17 06:52+0000\n" +"Last-Translator: masta0f1eave <lomskoff.dima@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/ru/>\n" "Language: ru\n" @@ -9,12 +9,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH в %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s не установлен или не найден" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (Семейная защита)" @@ -23,21 +31,93 @@ msgstr "AdGuard (Семейная защита)" msgid "AdGuard (Standard)" msgstr "AdGuard (Стандарт)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" -msgstr "" +msgstr "CIRA Canadian Shield (Семья)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua:3 msgid "CIRA Canadian Shield (Private)" -msgstr "" +msgstr "CIRA Canadian Shield (Личный)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua:3 msgid "CIRA Canadian Shield (Protected)" -msgstr "" +msgstr "CIRA Canadian Shield (Защищённый)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 msgid "CleanBrowsing (Adult Filter)" @@ -53,95 +133,237 @@ msgstr "CleanBrowsing (Фильтр безопасности)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 msgid "Cloudflare" -msgstr "CloudFlare" +msgstr "Cloudflare" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua:3 msgid "Cloudflare (Family Protection)" -msgstr "" +msgstr "Cloudflare (Семейная защита)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua:3 msgid "Cloudflare (Security Protection)" +msgstr "Cloudflare (Защита безопасности)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Конфигурация" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "Прокси-сервер DNS HTTPS" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "Настройки прокси-сервера DNS HTTPS" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "Кодовая точка DSCP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Отключить" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Не обновлять настройки" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Включить" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Для получения дополнительной информации о различных опциях, проверьте" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Назначить DNS роутера" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Назначить DNS роутера всем локальным устройствам" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Принудительное использование DNS роутера на локальных устройствах, или " +"перехват DNS." + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" #: applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json:3 msgid "Grant UCI and file access for luci-app-https-dns-proxy" -msgstr "Предоставить доступ к UCI и файлам для luci-app-https-dns-proxy" +msgstr "Предоставить luci-app-https-dns-proxy доступ к UCI и файлам" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" +"Если выбран параметр обновления, раздел «Перенаправление DNS» в %sDHCP и DNS" +"%s будет автоматически обновлен для использования выбранных поставщиков DoH " +"(%sбольше информации%s)." -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" -msgstr "Примеры" +msgstr "Записи" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Разрешить локальным устройствам использовать собственные DNS, если они " +"прописаны в настройках сети устройства" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (без рекламы)" +msgid "LibreDNS - GR (No Ads)" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Адрес" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "Адрес прослушивания" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Порт" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Порт для входящих соединений" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Загрузка" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "OpenDNS" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua:3 msgid "OpenDNS (Family Shield)" -msgstr "" +msgstr "OpenDNS (Семейная защита)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "Прокси сервер" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "Прокси-сервер" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -153,32 +375,48 @@ msgstr "Quad 9 (Защищено поддержкой ECS)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 msgid "Quad 9 (Secured)" -msgstr "Quad 9 (Защищен)" +msgstr "Quad 9 (Защищённый)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (незащищенный)" +msgstr "Quad 9 (Незащищённый)" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" msgstr "Перезапустить" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" -msgstr "Поставщик" +msgstr "Сервис DNS" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Управление службой" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" -msgstr "Статус сервиса" +msgstr "Статус службы" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Статус службы [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Запустить" @@ -187,32 +425,94 @@ msgstr "Запустить" msgid "Stop" msgstr "Остановить" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" -msgstr "Остановлено" +msgstr "Остановлена" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Неизвестный поставщик" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" +msgid "Update %s config" +msgstr "Обновить настройки %s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Обновление настроек DNSMASQ при запуске/остановке службы" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Обновлять все настройки" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "и" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "отключено" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "Публичное DNS DNSPod.cn" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (UK)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (без рекламы)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Тайвань)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Запущен: %s DoH, %s:%s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "Если выбрана опция «Обновление настроек DNSMASQ», добавляемые ниже записи " +#~ "будут перезаписывать настройки %sDHCP и DNS%s (%sбольше информации%s)." + +#~ msgid "Listen address" +#~ msgstr "Адрес" + +#~ msgid "Listen port" +#~ msgstr "Порт" + +#~ msgid "Proxy server" +#~ msgstr "Прокси-сервер" + #~ msgid "Alidns" #~ msgstr "Alidns" diff --git a/applications/luci-app-https-dns-proxy/po/sk/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/sk/https-dns-proxy.po index 91a7629aaa..0b70c5f5c3 100644 --- a/applications/luci-app-https-dns-proxy/po/sk/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/sk/https-dns-proxy.po @@ -1,19 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-04 17:35+0000\n" -"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" +"PO-Revision-Date: 2021-06-18 19:32+0000\n" +"Last-Translator: Juraj Šášik <juraj.sasik@gmail.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/sk/>\n" "Language: sk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.7\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -22,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Zakázať" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" +msgstr "Povoliť" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -102,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -162,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Spustiť" @@ -186,29 +417,47 @@ msgstr "Spustiť" msgid "Stop" msgstr "Zastaviť" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/sv/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/sv/https-dns-proxy.po index 3e0a4abff6..3d771f37b3 100644 --- a/applications/luci-app-https-dns-proxy/po/sv/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/sv/https-dns-proxy.po @@ -1,19 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-09-23 14:41+0000\n" -"Last-Translator: Kristoffer Grundström <dsmusicever@gmail.com>\n" +"PO-Revision-Date: 2021-03-19 04:16+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/sv/>\n" "Language: sv\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s är inte installerat eller kunde inte hittas" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -22,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -62,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Konfiguration" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Inaktivera" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Aktivera" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -102,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Lyssningsadress" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Lyssningsport" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Laddar" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -138,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -162,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "Ladda om" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Status för tjänsten" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Status för tjänsten [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Starta" @@ -186,31 +417,55 @@ msgstr "Starta" msgid "Stop" msgstr "Stopp" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Stoppad" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" +#~ msgid "Listen address" +#~ msgstr "Lyssningsadress" + +#~ msgid "Listen port" +#~ msgstr "Lyssningsport" + #~ msgid "DHCP and DNS" #~ msgstr "DHCP och DNS" diff --git a/applications/luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot b/applications/luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot index ea3bfbdb23..6ae099635a 100644 --- a/applications/luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot +++ b/applications/luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot @@ -1,10 +1,18 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -13,8 +21,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -53,38 +133,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -93,34 +257,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -129,8 +340,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -153,22 +368,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -177,28 +408,46 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" diff --git a/applications/luci-app-https-dns-proxy/po/tr/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/tr/https-dns-proxy.po index 6467362cd9..1f83c0fa83 100644 --- a/applications/luci-app-https-dns-proxy/po/tr/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/tr/https-dns-proxy.po @@ -1,19 +1,27 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-09-25 07:41+0000\n" -"Last-Translator: Mehmet Çetin <excom_zkko@hotmail.com>\n" +"PO-Revision-Date: 2022-02-05 09:21+0000\n" +"Last-Translator: ToldYouThat <itoldyouthat@protonmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationshttps-dns-proxy/tr/>\n" "Language: tr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.11-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH da %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "%s yüklenmemiş ya da bulunamadı" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 Güvenli DNS - CN" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (Aile Kalkanı)" @@ -22,9 +30,81 @@ msgstr "AdGuard (Aile Kalkanı)" msgid "AdGuard (Standard)" msgstr "AdGuard (Standart)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (Kötü Amaçlı Yazılımları + Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - IT (Kötü Amaçlı Yazılımları + Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/New York (Kötü Amaçlı Yazılımları ve Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (Ayarlanabilir)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "AliDNS" +msgid "AliDNS - CN" +msgstr "AliDNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "Applied Privacy DNS - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "CFIEC Genel DNS (Yalnızca IPv6)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" @@ -62,74 +142,211 @@ msgstr "Cloudflare (Aile Koruması)" msgid "Cloudflare (Security Protection)" msgstr "Cloudflare (Güvenlik Koruması)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "Comss.ru DNS (Doğu)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "Comss.ru DNS (Batı)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "Yapılandırma" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (Kötü Amaçlı Yazılımları + Reklamları Engelle + Sosyal)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "Denetlenen (Kötü Amaçlı Yazılım + Reklamları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (Kötü Amaçlı Yazılımları Engelle)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (Aile)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (Filtrelenmemiş)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "Aile için DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "DNS HTTPS Vekili" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "DNS HTTPS Vekili Ayarları" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "DNSPod Genel DNS - CN" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "DNSlify DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "DSCP Kod Noktası" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "DeCloudUs DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "Digitale Gesellschaft - CH" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Devre dışı bırak" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "Yapılandırmaları güncelleme" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" -msgstr "Çalıştır" +msgstr "Etkinleştir" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "FFMUC DNS - DE" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Farklı seçenekler hakkında daha fazla bilgi için kontrol edin" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "Yönlendirici DNS'sini Zorla" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "Yönlendirici DNS sunucusunu tüm yerel cihazlara zorla" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Yönlendirici DNS'sini zorla, yerel cihazlarda, DNS Hijacking olarak da " +"bilinir." + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" #: applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json:3 msgid "Grant UCI and file access for luci-app-https-dns-proxy" -msgstr "luci-app-https-dns-proxy'e UCI ve dosya erişimi ver" +msgstr "luci-app-https-dns-proxy için UCI ve dosya erişimi verin" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Hurricane Electric" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "IDNet.net - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "IIJ Genel DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" +"Güncelleme seçeneği seçilirse,%sDHCP ve DNS%s 'nin 'DNS iletimleri' bölümü, " +"seçilen DoH sağlayıcılarını (%smore information%s) kullanmak için otomatik " +"olarak güncellenecektir." + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" -msgstr "Maddeler" +msgstr "Örnekler" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "Lelux DNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Ayarlanmışsa, yerel cihazların kendi DNS sunucularını kullanmasına izin verin" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "LibreDNS - GR" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS (Reklamsız)" +msgid "LibreDNS - GR (No Ads)" +msgstr "LibreDNS - GR (Reklamsız)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Dinleme adresi" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "Dinleme Adresi" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Dinleme portu" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "Dinleme Bağlantı Noktası" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Yükleniyor" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (Ayarlanabilir)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "OSZX DNS (Pumplex)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "OSZX DNS - UK" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "OpenDNS" @@ -138,9 +355,13 @@ msgstr "OpenDNS" msgid "OpenDNS (Family Shield)" msgstr "OpenDNS (Aile Koruması)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "Vekil sunucu" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "Vekil Sunucu" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "Quad 101 - TW" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -162,22 +383,38 @@ msgstr "Quad 9 (Güvenlikli değil)" msgid "Reload" msgstr "Yeniden yükle" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "Çözümleyici" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "Çalışıyor: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "Restena DNS - LU" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "Rethink DNS (Ayarlanabilir)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "Seby DNS - AU" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "Hizmet Kontrolü" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Hizmet Durumu" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "Hizmet Durumu [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "Snopyta DNS - FI" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Başlat" @@ -186,30 +423,99 @@ msgstr "Başlat" msgid "Stop" msgstr "Durdur" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Durduruldu" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "Tiarap Genel DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "Tiarap Genel DNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Bilinmeyen Sağlayıcı" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" -"Aşağıdakilerden herhangi birini eklediğiniz/kaldırdığınızda, bunlar %sDHCP " -"ve DNS%s'in 'DNS İletimleri' bölümünü geçersiz kılacaktır." +msgid "Update %s config" +msgstr "%s yapılandırmasını güncelle" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "Başlatmada/Durdurmada DNSMASQ Yapılandırmasını Güncelle" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "Tüm yapılandırmaları güncelle" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "ve" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "devre dışı" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" + +#~ msgid "AliDNS" +#~ msgstr "AliDNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNSPod.cn Public DNS" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (İngiltere)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (Reklamsız)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (Tayvan)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "Çalışıyor: %s DoH at %s:%s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "DNSMASQ yapılandırmasını güncelle seçilirse, aşağıdan herhangi bir örnek " +#~ "eklediğinizde/kaldırdığınızda, bunlar %sDHCP ve DNS%s için 'DNS " +#~ "yönlendirme' bölümünü geçersiz kılmak için kullanılacaktır (%sdaha fazla " +#~ "bilgi%s)." + +#~ msgid "Listen address" +#~ msgstr "Dinleme adresi" + +#~ msgid "Listen port" +#~ msgstr "Dinleme portu" + +#~ msgid "Proxy server" +#~ msgstr "Vekil sunucu" + +#~ msgid "" +#~ "When you add/remove any instances below, they will be used to override " +#~ "the 'DNS forwardings' section of %sDHCP and DNS%s." +#~ msgstr "" +#~ "Aşağıdakilerden herhangi birini eklediğiniz/kaldırdığınızda, bunlar " +#~ "%sDHCP ve DNS%s'in 'DNS İletimleri' bölümünü geçersiz kılacaktır." diff --git a/applications/luci-app-https-dns-proxy/po/uk/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/uk/https-dns-proxy.po index 878d59cd57..e3e2e6bb99 100644 --- a/applications/luci-app-https-dns-proxy/po/uk/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/uk/https-dns-proxy.po @@ -11,10 +11,18 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.3-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "AdGuard (Сімейний захист)" @@ -23,8 +31,80 @@ msgstr "AdGuard (Сімейний захист)" msgid "AdGuard (Standard)" msgstr "AdGuard (Стандарт)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -63,38 +143,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "Вимкнути" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "Увімкнути" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "Для більш детальної інформації по параметрах, перевірте" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "Google" @@ -103,34 +267,81 @@ msgstr "Google" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "Приклади застосування" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" -msgstr "Адреса для прослуховування" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" +msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "Порт для прослуховування" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "Завантаження" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -139,9 +350,13 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "Проксі сервер" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" @@ -163,22 +378,38 @@ msgstr "Quad 9 (Не захищено)" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "Стан сервісу" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "Запустити" @@ -187,32 +418,62 @@ msgstr "Запустити" msgid "Stop" msgstr "Зупинити" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "Зупинено" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "Невідомий постачальник" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "та" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "вимкнено" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "Listen address" +#~ msgstr "Адреса для прослуховування" + +#~ msgid "Listen port" +#~ msgstr "Порт для прослуховування" + +#~ msgid "Proxy server" +#~ msgstr "Проксі сервер" + #~ msgid "EDNS client subnet" #~ msgstr "Клієнтська підмережа EDNS" diff --git a/applications/luci-app-https-dns-proxy/po/vi/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/vi/https-dns-proxy.po index e0319231a9..4ad84d8689 100644 --- a/applications/luci-app-https-dns-proxy/po/vi/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/vi/https-dns-proxy.po @@ -1,13 +1,27 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-10-26 20:34+0000\n" +"Last-Translator: 0x2f0713 <namhaiha0308@gmail.com>\n" +"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationshttps-dns-proxy/vi/>\n" "Language: vi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.3.2-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" msgstr "" @@ -16,8 +30,80 @@ msgstr "" msgid "AdGuard (Standard)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" +msgid "AliDNS - CN" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 @@ -56,38 +142,122 @@ msgstr "" msgid "Cloudflare (Security Protection)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" +msgid "DNSPod Public DNS - CN" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "" @@ -96,34 +266,81 @@ msgstr "" msgid "Grant UCI and file access for luci-app-https-dns-proxy" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" +msgid "LibreDNS - GR" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" +msgid "LibreDNS - GR (No Ads)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" msgstr "" @@ -132,8 +349,12 @@ msgstr "" msgid "OpenDNS (Family Shield)" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 @@ -156,22 +377,38 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "" @@ -180,28 +417,49 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." +msgid "Update %s config" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "" + +#~ msgid "Listen address" +#~ msgstr "Địa chỉ nghe" diff --git a/applications/luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po index 380b792f87..b5ec6e8ca0 100644 --- a/applications/luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-07-31 18:42+0000\n" -"Last-Translator: Zkdc <Zkdc2345@qq.com>\n" +"PO-Revision-Date: 2022-01-11 05:19+0000\n" +"Last-Translator: stoodvolleyball <stoodvolleyball@mailfence.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationshttps-dns-proxy/zh_Hans/>\n" "Language: zh_Hans\n" @@ -14,11 +14,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.10.1\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH , 地址是 %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" -msgstr "" +msgstr "%s 未安装或未找到" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 安全 DNS - CN" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" @@ -28,21 +36,93 @@ msgstr "AdGuard(家庭保护)" msgid "AdGuard (Standard)" msgstr "AdGuard(标准)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - IT (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/New York (拦截恶意软件+广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (可配置)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "" +msgid "AliDNS - CN" +msgstr "阿里 DNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "Applied Privacy DNS - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "CFIEC Public DNS (仅 IPv6 )" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" -msgstr "" +msgstr "CIRA加拿大盾(家庭)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua:3 msgid "CIRA Canadian Shield (Private)" -msgstr "" +msgstr "CIRA加拿大盾(私人)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua:3 msgid "CIRA Canadian Shield (Protected)" -msgstr "" +msgstr "CIRA加拿大盾(受保护)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 msgid "CleanBrowsing (Adult Filter)" @@ -62,92 +142,229 @@ msgstr "Cloudflare" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua:3 msgid "Cloudflare (Family Protection)" -msgstr "" +msgstr "Cloudflare (家庭保护)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua:3 msgid "Cloudflare (Security Protection)" -msgstr "" +msgstr "Cloudflare (安全防护)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "Comss.ru DNS (东部)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "Comss.ru DNS (西部)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "配置" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD(拦截恶意软件 + 广告 + 社交媒体)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD(拦截恶意软件 + 广告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD(拦截恶意软件)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD(家长控制)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD(未过滤)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +msgid "DNS For Family" +msgstr "DNS For Family" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" -msgstr "" +msgstr "DNS HTTPS 代理" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" -msgstr "" +msgstr "DNS HTTPS 代理设置" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" msgstr "DNS.SB" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "" +msgid "DNSPod Public DNS - CN" +msgstr "DNSPod 公共 DNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +msgid "DNSlify DNS" +msgstr "DNSlify DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "DSCP 代码点" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "Digitale Gesellschaft" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +msgid "DeCloudUs DNS" +msgstr "DeCloudUs DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +msgid "Digitale Gesellschaft - CH" +msgstr "Digitale Gesellschaft - CH" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "禁用" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "不更新配置" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "启用" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +msgid "FFMUC DNS - DE" +msgstr "FFMUC DNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "有关不同选项的更多信息,请检查" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "强制使用路由器 DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "强制所有本地设备使用路由器 DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "强制在本地设备上使用路由器 DNS,也称为 DNS 劫持。" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" msgstr "谷歌" #: applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json:3 msgid "Grant UCI and file access for luci-app-https-dns-proxy" +msgstr "为luci-app-https-dns-proxy授予UCI和文件访问权限" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +msgid "Hurricane Electric" +msgstr "Hurricane Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +msgid "IDNet.net - UK" +msgstr "IDNet.net - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +msgid "IIJ Public DNS - JP" +msgstr "IIJ Public DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." msgstr "" +"如果选择了“更新”选项,则 %sDHCP and DNS%s 的 'DNS转发'部分会自动更新到使用选" +"定的 DoH 供应商 (%s更多信息%s)。" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "实例" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +msgid "Lelux DNS - FI" +msgstr "Lelux DNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "如果进行了设置,允许本地设备使用自己的 DNS 服务器" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "LibreDNS" +msgid "LibreDNS - GR" +msgstr "LibreDNS - GR" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "LibreDNS(无广告)" +msgid "LibreDNS - GR (No Ads)" +msgstr "LibreDNS - GR (无广告)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "监听地址" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" msgstr "监听端口" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" msgstr "加载中" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (广告拦截)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (可配置)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" msgstr "ODVR (nic.cz)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +msgid "OSZX DNS (Pumplex)" +msgstr "OSZX DNS (Pumplex)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +msgid "OSZX DNS - UK" +msgstr "OSZX DNS - UK" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" -msgstr "" +msgstr "OpenDNS" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua:3 msgid "OpenDNS (Family Shield)" -msgstr "" +msgstr "OpenDNS (家庭护盾)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" msgstr "代理服务器" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +msgid "Quad 101 - TW" +msgstr "Quad 101 - TW" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" msgstr "Quad 9(推荐)" @@ -166,23 +383,39 @@ msgstr "Quad 9(不安全)" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" -msgstr "重新载入" +msgstr "重新加载" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "解析器" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +msgid "Restena DNS - LU" +msgstr "Restena DNS - LU" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "Rethink DNS (可配置)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +msgid "Seby DNS - AU" +msgstr "Seby DNS - AU" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "服务控制" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "服务状态" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" -msgstr "" +msgstr "服务状态 [%s %s]" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +msgid "Snopyta DNS - FI" +msgstr "Snopyta DNS - FI" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" @@ -192,32 +425,101 @@ msgstr "启动" msgid "Stop" msgstr "停止" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "已停止" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +msgid "Switch DNS - CH" +msgstr "Switch DNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +msgid "Tiarap Public DNS - JP" +msgstr "Tiarap Public DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +msgid "Tiarap Public DNS - SG" +msgstr "Tiarap Public DNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "未知的提供商" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" +msgid "Update %s config" +msgstr "更新%s配置" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "在开始/停止时更新DNSMASQ配置" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "更新所有配置" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" msgstr "和" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "已禁用" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" msgstr "rubyfish.cn" +#~ msgid "AliDNS" +#~ msgstr "阿里巴巴DNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNSPod.cn 公共DNS" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "数字社会" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (UK)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS(无广告)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (台湾地区)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "运行中:%s DoH 于 %s:%s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "如果选择了更新DNSMASQ配置,则当您添加/删除下面的任何实例时,它们将用于覆" +#~ "盖%sDHCP和DNS%s(%s更多信息%s)的“ DNS转发”部分。" + +#~ msgid "Listen address" +#~ msgstr "监听地址" + +#~ msgid "Listen port" +#~ msgstr "监听端口" + +#~ msgid "Proxy server" +#~ msgstr "代理服务器" + +#~ msgid "" +#~ "When you add/remove any instances below, they will be used to override " +#~ "the 'DNS forwardings' section of %sDHCP and DNS%s." +#~ msgstr "" +#~ "当您在下面添加/删除任何实例时,它们将被用于覆盖%sDHCP 和 DNS%s的'DNS转" +#~ "发'部分。" + #~ msgid "EDNS client subnet" #~ msgstr "EDNS 客户端子网" diff --git a/applications/luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po b/applications/luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po index 26907e0e47..cd91b80bd4 100644 --- a/applications/luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po +++ b/applications/luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-06-29 05:51+0000\n" +"PO-Revision-Date: 2022-02-05 09:21+0000\n" "Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationshttps-dns-proxy/zh_Hant/>\n" @@ -14,11 +14,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.11-dev\n" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:72 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:92 +msgid "%s DoH at %s:%s" +msgstr "%s DoH ,位址是 %s:%s" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:73 msgid "%s is not installed or not found" -msgstr "" +msgstr "%s 未安裝或找不到" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.360.doh.lua:3 +msgid "360 Secure DNS - CN" +msgstr "360 安全 DNS - CN" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 msgid "AdGuard (Family Protection)" @@ -28,21 +36,98 @@ msgstr "AdGuard (家庭保護)" msgid "AdGuard (Standard)" msgstr "AdGuard (標準)" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.au.doh.lua:3 +msgid "AhaDNS - AU (Block Malware + Ads)" +msgstr "AhaDNS - AU (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.es.doh.lua:3 +msgid "AhaDNS - ES (Block Malware + Ads)" +msgstr "AhaDNS - ES (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.in.doh.lua:3 +msgid "AhaDNS - IN (Block Malware + Ads)" +msgstr "AhaDNS - IN (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.it.doh.lua:3 +msgid "AhaDNS - IT (Block Malware + Ads)" +msgstr "AhaDNS - IT (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.nl.doh.lua:3 +msgid "AhaDNS - NL (Block Malware + Ads)" +msgstr "AhaDNS - NL (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.no.doh.lua:3 +msgid "AhaDNS - NO (Block Malware + Ads)" +msgstr "AhaDNS - NO (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.pl.doh.lua:3 +msgid "AhaDNS - PL (Block Malware + Ads)" +msgstr "AhaDNS - PL (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.chi.doh.lua:3 +msgid "AhaDNS - US/Chicago (Block Malware + Ads)" +msgstr "AhaDNS - US/Chicago (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.la.doh.lua:3 +msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)" +msgstr "AhaDNS - US/Los Angeles (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ahadns.ny.doh.lua:3 +msgid "AhaDNS - US/New York (Block Malware + Ads)" +msgstr "AhaDNS - US/New York (攔截惡意軟體+廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.ahadns.blitz.lua:3 +msgid "AhaDNS Blitz (Configurable)" +msgstr "AhaDNS Blitz (可設定)" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.alidns.dns.lua:3 -msgid "AliDNS" -msgstr "" +msgid "AliDNS - CN" +msgstr "阿里 DNS - CN" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.applied-privacy.lua:3 +msgid "Applied Privacy DNS - AT/DE" +msgstr "Applied Privacy DNS - AT/DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-ch.lua:3 +#, fuzzy +msgid "BlahDNS - CH" +msgstr "BlahDNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-de.lua:3 +#, fuzzy +msgid "BlahDNS - DE" +msgstr "BlahDNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-fi.lua:3 +#, fuzzy +msgid "BlahDNS - FI" +msgstr "BlahDNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-jp.lua:3 +#, fuzzy +msgid "BlahDNS - JP" +msgstr "BlahDNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.blahdns.doh-sg.lua:3 +#, fuzzy +msgid "BlahDNS - SG" +msgstr "BlahDNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.cfiec.dns.lua:3 +msgid "CFIEC Public DNS (IPv6 Only)" +msgstr "CFIEC Public DNS (僅 IPv6 )" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.family.lua:3 msgid "CIRA Canadian Shield (Family)" -msgstr "" +msgstr "CIRA 加拿大護盾 (家庭)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.private.lua:3 msgid "CIRA Canadian Shield (Private)" -msgstr "" +msgstr "CIRA 加拿大護盾 (隱私)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ca.cira.canadianshield.protected.lua:3 msgid "CIRA Canadian Shield (Protected)" -msgstr "" +msgstr "CIRA 加拿大護盾 (受保護)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 msgid "CleanBrowsing (Adult Filter)" @@ -58,132 +143,302 @@ msgstr "CleanBrowsing (安全篩選器)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 msgid "Cloudflare" -msgstr "" +msgstr "Cloudflare" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.family.lua:3 msgid "Cloudflare (Family Protection)" -msgstr "" +msgstr "Cloudflare (家庭保護)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua:3 msgid "Cloudflare (Security Protection)" -msgstr "" +msgstr "Cloudflare (安全保護)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.east.dns.lua:3 +msgid "Comss.ru DNS (East)" +msgstr "Comss.ru DNS (東部)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/one.comss.dns.lua:3 +msgid "Comss.ru DNS (West)" +msgstr "Comss.ru DNS (西部)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:122 +msgid "Configuration" +msgstr "組態" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads-social.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p3.lua:3 +msgid "ControlD (Block Malware + Ads + Social)" +msgstr "ControlD (攔截惡意軟體 + 廣告 + 社群媒體)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware-ads.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p2.lua:3 +msgid "ControlD (Block Malware + Ads)" +msgstr "ControlD (攔截惡意軟體 + 廣告)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.malware.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p1.lua:3 +msgid "ControlD (Block Malware)" +msgstr "ControlD (攔截惡意軟體)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.family.lua:3 +msgid "ControlD (Family)" +msgstr "ControlD (家長控制)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.p0.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.controld.freedns.unfiltered.lua:3 +msgid "ControlD (Unfiltered)" +msgstr "ControlD (未過濾)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnsforfamily.dns-doh.lua:3 +#, fuzzy +msgid "DNS For Family" +msgstr "DNS For Family" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/de.dnsforge.lua:3 +#, fuzzy +msgid "DNS Forge - DE" +msgstr "DNS Forge - DE" #: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 msgid "DNS HTTPS Proxy" -msgstr "" +msgstr "DNS HTTPS Proxy" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:106 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 msgid "DNS HTTPS Proxy Settings" msgstr "DNS HTTPS Proxy 設定" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/sb.dns.lua:3 msgid "DNS.SB" -msgstr "" +msgstr "DNS.SB" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns1.lua:3 +msgid "DNSCrypt.ca (DNS1)" +msgstr "DNSCrypt.ca (DNS1)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ca.dnscrypt.dns2.lua:3 +msgid "DNSCrypt.ca (DNS2)" +msgstr "DNSCrypt.ca (DNS2)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/pub.doh.lua:3 -msgid "DNSPod.cn Public DNS" -msgstr "" +msgid "DNSPod Public DNS - CN" +msgstr "DNSPod 公共 DNS - CN" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua:3 -msgid "Digitale Gesellschaft" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.dnslify.doh.lua:3 +#, fuzzy +msgid "DNSlify DNS" +msgstr "DNSlify DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:195 +msgid "DSCP Codepoint" +msgstr "DSCP 代碼點" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.decloudus.dns.lua:3 +#, fuzzy +msgid "DeCloudUs DNS" +msgstr "DeCloudUs DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.lua:3 +#, fuzzy +msgid "Digitale Gesellschaft - CH" +msgstr "Digitale Gesellschaft - CH" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:57 msgid "Disable" msgstr "停用" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:130 +msgid "Do not update configs" +msgstr "不更新設定" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:54 msgid "Enable" msgstr "啟用" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:27 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.ffmuc.doh.lua:3 +#, fuzzy +msgid "FFMUC DNS - DE" +msgstr "FFMUC DNS - DE" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:29 msgid "For more information on different options check" msgstr "有關不同選項的更多資訊,請檢查" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Force Router DNS" +msgstr "強制使用路由器 DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:134 +msgid "Force Router DNS server to all local devices" +msgstr "強制所有本地裝置使用路由器 DNS" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:132 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "強制在本地裝置上使用路由器 DNS,也稱為 DNS 劫持。" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 msgid "Google" -msgstr "" +msgstr "Google" #: applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json:3 msgid "Grant UCI and file access for luci-app-https-dns-proxy" +msgstr "授予 luci-app-https-dns-proxy 擁有 UCI 和檔案存取的權限" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.he.ordns.lua:3 +#, fuzzy +msgid "Hurricane Electric" +msgstr "Hurricane Electric" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.idnet.doh.lua:3 +#, fuzzy +msgid "IDNet.net - UK" +msgstr "IDNet.net - UK" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/jp.iij.dns.public.lua:3 +#, fuzzy +msgid "IIJ Public DNS - JP" +msgstr "IIJ Public DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "" +"If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS" +"%s will be automatically updated to use selected DoH providers (%smore " +"information%s)." msgstr "" +"如果選擇了「更新」選項,則 %sDHCP and DNS%s 的 'DNS轉發' 部分會自動更新到使用" +"選取的 DoH 提供者 (%s更多資訊%s)。" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:138 msgid "Instances" msgstr "例項" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/fi.lelux.resolver-eu.lua:3 +#, fuzzy +msgid "Lelux DNS - FI" +msgstr "Lelux DNS - FI" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +msgid "Let local devices use their own DNS servers if set" +msgstr "如果進行了設定,允許本地裝置使用自己的 DNS 伺服器" + #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "" +#, fuzzy +msgid "LibreDNS - GR" +msgstr "LibreDNS - GR" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "" +msgid "LibreDNS - GR (No Ads)" +msgstr "LibreDNS - GR (無廣告)" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:160 -msgid "Listen address" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:178 +msgid "Listen Address" msgstr "監聽位址" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:173 -msgid "Listen port" -msgstr "監聽埠" +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:191 +msgid "Listen Port" +msgstr "監聽連接埠" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm:52 msgid "Loading" -msgstr "載入中" +msgstr "正在載入中" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.lua:3 +msgid "Mullvad" +msgstr "Mullvad" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.mullvad.doh.adblocker.lua:3 +msgid "Mullvad (AdBlock)" +msgstr "Mullvad (AdBlock)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.nextdns.dns.lua:3 +msgid "NextDNS.io (Configurable)" +msgstr "NextDNS.io (可設定)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua:3 msgid "ODVR (nic.cz)" -msgstr "" +msgstr "ODVR (nic.cz)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.pumplex.dns.lua:3 +#, fuzzy +msgid "OSZX DNS (Pumplex)" +msgstr "OSZX DNS (Pumplex)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/co.osxz.dns.lua:3 +#, fuzzy +msgid "OSZX DNS - UK" +msgstr "OSZX DNS - UK" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.doh.lua:3 msgid "OpenDNS" -msgstr "" +msgstr "OpenDNS" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.opendns.familyshield.doh.lua:3 msgid "OpenDNS (Family Shield)" -msgstr "" +msgstr "OpenDNS (家庭護盾)" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:199 +msgid "Proxy Server" +msgstr "Proxy 伺服器" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:177 -msgid "Proxy server" -msgstr "代理伺服器" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/tw.twnic.dns.lua:3 +#, fuzzy +msgid "Quad 101 - TW" +msgstr "Quad 101 - TW" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 msgid "Quad 9 (Recommended)" -msgstr "" +msgstr "Quad 9 (建議)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 msgid "Quad 9 (Secured with ECS Support)" -msgstr "" +msgstr "Quad 9 (透過 ECS 支援獲得保護)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 msgid "Quad 9 (Secured)" -msgstr "" +msgstr "Quad 9 (受保護)" #: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 msgid "Quad 9 (Unsecured)" -msgstr "" +msgstr "Quad 9 (未受保護)" #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:44 msgid "Reload" msgstr "重新載入" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:133 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:145 msgid "Resolver" msgstr "解析程式" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Running: %s DoH at %s:%s" -msgstr "" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/lu.restena.kaitain.lua:3 +#, fuzzy +msgid "Restena DNS - LU" +msgstr "Restena DNS - LU" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:110 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.rethinkdns.basic.lua:3 +msgid "Rethink DNS (Configurable)" +msgstr "Rethink DNS (可設定)" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/io.seby.doh-2.lua:3 +#, fuzzy +msgid "Seby DNS - AU" +msgstr "Seby DNS - AU" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:118 +msgid "Service Control" +msgstr "服務控制" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 msgid "Service Status" msgstr "服務狀態" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:108 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:112 msgid "Service Status [%s %s]" msgstr "服務狀態 [%s %s]" +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.snopyta.dns.doh.fi.lua:3 +#, fuzzy +msgid "Snopyta DNS - FI" +msgstr "Snopyta DNS - FI" + #: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 msgid "Start" msgstr "啟動" @@ -192,31 +447,96 @@ msgstr "啟動" msgid "Stop" msgstr "停止" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:76 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 msgid "Stopped" msgstr "已停止" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:63 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/ch.switch.dns.lua:3 +#, fuzzy +msgid "Switch DNS - CH" +msgstr "Switch DNS - CH" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.jp.lua:3 +#, fuzzy +msgid "Tiarap Public DNS - JP" +msgstr "Tiarap Public DNS - JP" + +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/app.tiar.doh.lua:3 +#, fuzzy +msgid "Tiarap Public DNS - SG" +msgstr "Tiarap Public DNS - SG" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:65 msgid "Unknown Provider" msgstr "未知的提供商" #: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:127 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of %sDHCP and DNS%s." -msgstr "" +msgid "Update %s config" +msgstr "更新 %s 設定" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:123 +msgid "Update DNSMASQ Config on Start/Stop" +msgstr "在開始/停止時更新 DNSMASQ 設定" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:48 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:124 +msgid "Update all configs" +msgstr "更新所有設定" + +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:50 msgid "and" -msgstr "" +msgstr "和" -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:78 +#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:101 msgid "disabled" msgstr "已停用" -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 +#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cn.rubyfish.dns.lua:3 msgid "rubyfish.cn" -msgstr "" +msgstr "rubyfish.cn" + +#~ msgid "AliDNS" +#~ msgstr "阿里巴巴DNS" + +#~ msgid "DNSPod.cn Public DNS" +#~ msgstr "DNSPod.cn 公用DNS" + +#~ msgid "Digitale Gesellschaft" +#~ msgstr "Digitale Gesellschaft" + +#~ msgid "IDNet.net (UK)" +#~ msgstr "IDNet.net (英國)" + +#~ msgid "LibreDNS" +#~ msgstr "LibreDNS" + +#~ msgid "LibreDNS (No Ads)" +#~ msgstr "LibreDNS (無廣告)" + +#~ msgid "NextDNS.io" +#~ msgstr "NextDNS.io" + +#~ msgid "Quad 101 (Taiwan)" +#~ msgstr "Quad 101 (台灣)" + +#~ msgid "Running: %s DoH at %s:%s" +#~ msgstr "正在執行: %s DoH 於 %s:%s" + +#~ msgid "" +#~ "If update DNSMASQ config is selected, when you add/remove any instances " +#~ "below, they will be used to override the 'DNS forwardings' section of " +#~ "%sDHCP and DNS%s (%smore information%s)." +#~ msgstr "" +#~ "如果選擇了更新 DNSMASQ 設定,則當您新增/刪除下面的任何實例時,它們將用於覆" +#~ "蓋 %sDHCP 和 DNS%s (%s更多資訊%s)的 「DNS轉發」 部分。" + +#~ msgid "Listen address" +#~ msgstr "監聽地址" + +#~ msgid "Listen port" +#~ msgstr "監聽埠" + +#~ msgid "Proxy server" +#~ msgstr "代理伺服器" #~ msgid "Provider" #~ msgstr "提供商" diff --git a/applications/luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy b/applications/luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy index a1ecfcea24..b42fa5859f 100644 --- a/applications/luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy +++ b/applications/luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy @@ -1,3 +1,4 @@ #!/bin/sh rm -rf /var/luci-modulecache/; rm -f /var/luci-indexcache; +[ -x /etc/init.d/rpcd ] && /etc/init.d/rpcd reload exit 0 diff --git a/applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json b/applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json index bcd4c5fd7d..97f8c6df41 100644 --- a/applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json +++ b/applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json @@ -12,9 +12,6 @@ "/usr/lib/lua/luci/https-dns-proxy/providers/*": [ "read" ], - "/etc/init.d/dnsmasq *": [ - "exec" - ], "/etc/init.d/https-dns-proxy *": [ "exec" ] |