From 1b33b3fd02c17c427ed0323705c67b7856036d38 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Wed, 4 Dec 2024 14:40:26 +0100 Subject: [PATCH 01/10] Some fixes on OMR-ByPass --- omr-bypass/files/etc/init.d/omr-bypass-nft | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/omr-bypass/files/etc/init.d/omr-bypass-nft b/omr-bypass/files/etc/init.d/omr-bypass-nft index b9121e4e5c..e81ecbd3c2 100755 --- a/omr-bypass/files/etc/init.d/omr-bypass-nft +++ b/omr-bypass/files/etc/init.d/omr-bypass-nft @@ -144,8 +144,8 @@ _bypass_domain() { done fi fi - if [ "$(uci -q get dhcp.omr_dst_bypass_$intf | grep /$domain/)" = "" ]; then - uci -q add_list dhcp.omr_dst_bypass_$intf.domain="$domain" + if [ "$(uci -q get dhcp.omr_dst_bypass_${intf}.domain | sed 's/ /\n/g' | grep $domain)" = "" ]; then + uci -q add_list dhcp.omr_dst_bypass_${intf}.domain="$domain" uci -q set firewall.omr_dst_bypass_${type}_4.enabled='1' uci -q set firewall.omr_dst_bypass_${type}_dstip_4.enabled='1' uci -q set firewall.omr_dst_bypass_${type}_dstip_4_accept.enabled='1' @@ -437,7 +437,7 @@ _bypass_proto_without_ndpi() { uci -q batch <<-EOF >/dev/null set firewall.bypass_$proto=ipset set firewall.bypass_$proto.name="bypass_$proto" - set firewall.bypass_$proto.match='dest_ip' + set firewall.bypass_$proto.match='dest_net' set firewall.bypass_$proto.family='ipv4' set firewall.bypass_$proto.enabled='1' set firewall.bypass_$proto_rule=rule @@ -455,7 +455,7 @@ _bypass_proto_without_ndpi() { uci -q batch <<-EOF >/dev/null set firewall.bypass6_$proto=ipset set firewall.bypass6_$proto.name="bypass6_$proto" - set firewall.bypass6_$proto.match='dest_ip' + set firewall.bypass6_$proto.match='dest_net' set firewall.bypass6_$proto.family='ipv6' set firewall.bypass6_$proto.enabled='1' set firewall.bypass6_$proto_rule=rule @@ -635,12 +635,12 @@ _intf_rule() { uci -q batch <<-EOF set firewall.omr_dst_bypass_${intf}_4=ipset set firewall.omr_dst_bypass_${intf}_4.name="omr_dst_bypass_${intf}_4" - set firewall.omr_dst_bypass_${intf}_4.match='dest_ip' + set firewall.omr_dst_bypass_${intf}_4.match='dest_net' set firewall.omr_dst_bypass_${intf}_4.family='ipv4' set firewall.omr_dst_bypass_${intf}_4.enabled='1' set firewall.omr_dst_bypass_${intf}_6=ipset set firewall.omr_dst_bypass_${intf}_6.name="omr_dst_bypass_${intf}_6" - set firewall.omr_dst_bypass_${intf}_6.match='dest_ip' + set firewall.omr_dst_bypass_${intf}_6.match='dest_net' set firewall.omr_dst_bypass_${intf}_6.family='ipv6' set firewall.omr_dst_bypass_${intf}_6.enabled='1' EOF @@ -1000,6 +1000,8 @@ start_service() { sqlite3 /usr/share/omr-bypass/omr-bypass.db "select distinct(proto) from (select proto from hostproto union all select proto from ipproto) a order by proto;" ".exit" > /usr/share/omr-bypass/omr-bypass-proto.lst config_load omr-bypass config_foreach _add_proto_without_ndpi proto + uci -q commit dhcp + uci -q commit firewall sort < /usr/share/omr-bypass/omr-bypass-proto.lst > /usr/share/omr-bypass/omr-bypass-proto.lst.new mv /usr/share/omr-bypass/omr-bypass-proto.lst.new /usr/share/omr-bypass/omr-bypass-proto.lst logger -t "omr-bypass" "OMR-ByPass is running" From 8e1a2e2dc7eb0318c8d1cde965aed72cedac797d Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 11:03:16 +0100 Subject: [PATCH 02/10] Remove https-dns-proxy --- https-dns-proxy/Makefile | 48 ---- https-dns-proxy/files/README.md | 3 - https-dns-proxy/files/https-dns-proxy.config | 18 -- https-dns-proxy/files/https-dns-proxy.init | 238 ------------------ https-dns-proxy/test.sh | 3 - luci-app-https-dns-proxy/Makefile | 18 -- .../luasrc/controller/https-dns-proxy.lua | 25 -- .../ch.digitale-gesellschaft.dns.lua | 6 - .../providers.disabled/cn.rubyfish.dns.lua | 6 - .../providers.disabled/sb.dns.lua | 6 - .../providers/com.adguard.dns-family.lua | 8 - .../providers/com.adguard.dns.lua | 8 - .../providers/com.cloudflare-dns-family.lua | 6 - .../providers/com.cloudflare-dns-malware.lua | 6 - .../providers/com.cloudflare-dns.lua | 6 - .../https-dns-proxy/providers/cz.nic.odvr.lua | 6 - .../https-dns-proxy/providers/google.dns.lua | 7 - .../providers/gr.libredns.doh-ads.lua | 8 - .../providers/gr.libredns.doh.lua | 8 - .../providers/net.quad9.dns.lua | 8 - .../providers/net.quad9.dns10.lua | 8 - .../providers/net.quad9.dns11.lua | 8 - .../providers/net.quad9.dns9.lua | 8 - .../providers/org.cleanbrowsing.doh-adult.lua | 8 - .../org.cleanbrowsing.doh-family.lua | 8 - .../org.cleanbrowsing.doh-security.lua | 8 - .../luasrc/model/cbi/https-dns-proxy.lua | 174 ------------- .../luasrc/view/https-dns-proxy/buttons.htm | 77 ------ .../luasrc/view/https-dns-proxy/css.htm | 9 - .../luasrc/view/https-dns-proxy/js.htm | 60 ----- .../view/https-dns-proxy/status-textarea.htm | 13 - .../luasrc/view/https-dns-proxy/status.htm | 10 - .../po/bg/https-dns-proxy.po | 168 ------------- .../po/ca/https-dns-proxy.po | 168 ------------- .../po/cs/https-dns-proxy.po | 188 -------------- .../po/de/https-dns-proxy.po | 197 --------------- .../po/el/https-dns-proxy.po | 174 ------------- .../po/en/https-dns-proxy.po | 176 ------------- .../po/es/https-dns-proxy.po | 206 --------------- .../po/fr/https-dns-proxy.po | 176 ------------- .../po/he/https-dns-proxy.po | 168 ------------- .../po/hi/https-dns-proxy.po | 168 ------------- .../po/hu/https-dns-proxy.po | 176 ------------- .../po/it/https-dns-proxy.po | 174 ------------- .../po/ja/https-dns-proxy.po | 168 ------------- .../po/ko/https-dns-proxy.po | 168 ------------- .../po/mr/https-dns-proxy.po | 176 ------------- .../po/ms/https-dns-proxy.po | 168 ------------- .../po/nb_NO/https-dns-proxy.po | 168 ------------- .../po/pl/https-dns-proxy.po | 198 --------------- .../po/pt/https-dns-proxy.po | 197 --------------- .../po/pt_BR/https-dns-proxy.po | 191 -------------- .../po/ro/https-dns-proxy.po | 175 ------------- .../po/ru/https-dns-proxy.po | 175 ------------- .../po/sk/https-dns-proxy.po | 174 ------------- .../po/sv/https-dns-proxy.po | 174 ------------- .../po/templates/https-dns-proxy.pot | 177 ------------- .../po/tr/https-dns-proxy.po | 174 ------------- .../po/uk/https-dns-proxy.po | 175 ------------- .../po/vi/https-dns-proxy.po | 168 ------------- .../po/zh_Hans/https-dns-proxy.po | 207 --------------- .../po/zh_Hant/https-dns-proxy.po | 198 --------------- .../etc/uci-defaults/40_luci-https-dns-proxy | 3 - .../luci/menu.d/luci-app-https-dns-proxy.json | 13 - .../rpcd/acl.d/luci-app-https-dns-proxy.json | 11 - 65 files changed, 6230 deletions(-) delete mode 100644 https-dns-proxy/Makefile delete mode 100644 https-dns-proxy/files/README.md delete mode 100644 https-dns-proxy/files/https-dns-proxy.config delete mode 100755 https-dns-proxy/files/https-dns-proxy.init delete mode 100644 https-dns-proxy/test.sh delete mode 100644 luci-app-https-dns-proxy/Makefile delete mode 100644 luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-family.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-malware.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua delete mode 100644 luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm delete mode 100644 luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/css.htm delete mode 100644 luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm delete mode 100644 luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status-textarea.htm delete mode 100644 luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm delete mode 100644 luci-app-https-dns-proxy/po/bg/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/ca/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/cs/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/de/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/el/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/en/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/es/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/fr/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/he/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/hi/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/hu/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/it/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/ja/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/ko/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/mr/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/ms/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/pl/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/pt/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/ro/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/ru/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/sk/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/sv/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot delete mode 100644 luci-app-https-dns-proxy/po/tr/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/uk/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/vi/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po delete mode 100644 luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy delete mode 100644 luci-app-https-dns-proxy/root/usr/share/luci/menu.d/luci-app-https-dns-proxy.json delete mode 100644 luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json diff --git a/https-dns-proxy/Makefile b/https-dns-proxy/Makefile deleted file mode 100644 index 73d0a07cf4..0000000000 --- a/https-dns-proxy/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -include $(TOPDIR)/rules.mk - -PKG_NAME:=https-dns-proxy -PKG_VERSION:=2021-06-03 -PKG_RELEASE:=1 - -PKG_SOURCE_PROTO:=git -PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy -PKG_SOURCE_DATE:=2021-06-03 -PKG_SOURCE_VERSION:=5651b984f770a8bcecb14aeffc224703f8f82586 -PKG_MIRROR_HASH:=b65161936269aa3117debad0fcfce157024726b78d7e7da77c226f7aa8da5b4d -PKG_MAINTAINER:=Stan Grishin -PKG_LICENSE:=MIT -PKG_LICENSE_FILES:=LICENSE - -include $(INCLUDE_DIR)/package.mk -include $(INCLUDE_DIR)/cmake.mk - -CMAKE_OPTIONS += -DCLANG_TIDY_EXE= - -define Package/https-dns-proxy - SECTION:=net - CATEGORY:=Network - TITLE:=DNS Over HTTPS Proxy - URL:=https://docs.openwrt.melmac.net/https-dns-proxy/ - DEPENDS:=+libcares +libcurl +libev +ca-bundle - CONFLICTS:=https_dns_proxy -endef - -define Package/https-dns-proxy/description -https-dns-proxy is a light-weight DNS<-->HTTPS, non-caching translation proxy for the RFC 8484 DoH standard. -It receives regular (UDP) DNS requests and issues them via DoH. -Please see https://docs.openwrt.melmac.net/https-dns-proxy/ for more information. -endef - -define Package/https-dns-proxy/conffiles -/etc/config/https-dns-proxy -endef - -define Package/https-dns-proxy/install - $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d ${1}/etc/config - $(INSTALL_BIN) $(PKG_BUILD_DIR)/https_dns_proxy $(1)/usr/sbin/https-dns-proxy - $(INSTALL_BIN) ./files/https-dns-proxy.init $(1)/etc/init.d/https-dns-proxy - $(SED) "s|^\(PKG_VERSION\).*|\1='$(PKG_VERSION)-$(PKG_RELEASE)'|" $(1)/etc/init.d/https-dns-proxy - $(INSTALL_CONF) ./files/https-dns-proxy.config $(1)/etc/config/https-dns-proxy -endef - -$(eval $(call BuildPackage,https-dns-proxy)) diff --git a/https-dns-proxy/files/README.md b/https-dns-proxy/files/README.md deleted file mode 100644 index 7ebf479e6f..0000000000 --- a/https-dns-proxy/files/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# README - -README has been moved to [https://docs.openwrt.melmac.net/https-dns-proxy/](https://docs.openwrt.melmac.net/https-dns-proxy/). diff --git a/https-dns-proxy/files/https-dns-proxy.config b/https-dns-proxy/files/https-dns-proxy.config deleted file mode 100644 index 3c5eecf4d1..0000000000 --- a/https-dns-proxy/files/https-dns-proxy.config +++ /dev/null @@ -1,18 +0,0 @@ -config main 'config' - option update_dnsmasq_config '*' - -config https-dns-proxy - option bootstrap_dns '8.8.8.8,8.8.4.4' - option resolver_url 'https://dns.google/dns-query' - option listen_addr '127.0.0.1' - option listen_port '5053' - option user 'nobody' - option group 'nogroup' - -config https-dns-proxy - option bootstrap_dns '1.1.1.1,1.0.0.1' - option resolver_url 'https://cloudflare-dns.com/dns-query' - option listen_addr '127.0.0.1' - option listen_port '5054' - option user 'nobody' - option group 'nogroup' diff --git a/https-dns-proxy/files/https-dns-proxy.init b/https-dns-proxy/files/https-dns-proxy.init deleted file mode 100755 index ef0ffc7d2d..0000000000 --- a/https-dns-proxy/files/https-dns-proxy.init +++ /dev/null @@ -1,238 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright 2019-2020 Stan Grishin (stangri@melmac.net) -# shellcheck disable=SC2039,SC3043,SC3060 -PKG_VERSION='dev-test' - -# shellcheck disable=SC2034 -START=80 -# shellcheck disable=SC2034 -USE_PROCD=1 - -if type extra_command 1>/dev/null 2>&1; then - extra_command 'version' 'Show version information' -else -# shellcheck disable=SC2034 - EXTRA_COMMANDS='version' -fi - -readonly PROG=/usr/sbin/https-dns-proxy -dnsmasqConfig=''; forceDNS=''; forceDNSPorts=''; - -version() { echo "$PKG_VERSION"; } - -xappend() { param="$param $1"; } - -append_bool() { - local section="$1" - local option="$2" - local value="$3" - local default="$4" - local _loctmp - [ -z "$default" ] && default="0" - config_get_bool _loctmp "$section" "$option" "$default" - [ "$_loctmp" != "0" ] && xappend "$value" -} - -append_parm() { - local section="$1" - local option="$2" - local switch="$3" - local default="$4" - local _loctmp - config_get _loctmp "$section" "$option" "$default" - [ -z "$_loctmp" ] && return 0 - xappend "$switch $_loctmp" -} - -start_instance() { - local cfg="$1" param listen_addr listen_port i - append_parm "$cfg" 'resolver_url' '-r' - append_parm "$cfg" 'polling_interval' '-i' - append_parm "$cfg" 'listen_addr' '-a' '127.0.0.1' - append_parm "$cfg" 'listen_port' '-p' "$p" - append_parm "$cfg" 'dscp_codepoint' '-c' - append_parm "$cfg" 'bootstrap_dns' '-b' - append_parm "$cfg" 'user' '-u' 'nobody' - append_parm "$cfg" 'group' '-g' 'nogroup' - append_parm "$cfg" 'proxy_server' '-t' - append_parm "$cfg" 'logfile' '-l' - append_bool "$cfg" 'use_http1' '-x' - config_get_bool ipv6_resolvers_only "$cfg" 'use_ipv6_resolvers_only' '0' - config_get verbosity "$cfg" 'verbosity' '0' - -# shellcheck disable=SC2086,SC2154 - for i in $(seq 1 $verbosity); do - xappend '-v' - done -# shellcheck disable=SC2154 - if [ "$ipv6_resolvers_only" = 0 ]; then - xappend '-4' - fi - - procd_open_instance -# shellcheck disable=SC2086 - procd_set_param command ${PROG} ${param} - procd_set_param stderr 1 - procd_set_param stdout 1 - procd_set_param respawn - procd_close_instance - - config_get listen_addr "$cfg" 'listen_addr' '127.0.0.1' - config_get listen_port "$cfg" 'listen_port' "$p" - - if [ "$dnsmasqConfig" = "*" ]; then - config_load 'dhcp' - config_foreach dnsmasq_add_doh_server 'dnsmasq' "${listen_addr}" "${listen_port}" - elif [ -n "$dnsmasqConfig" ]; then - for i in $dnsmasqConfig; do - dnsmasq_add_doh_server "@dnsmasq[${i}]" "${listen_addr}" "${listen_port}" - done - fi - p="$((p+1))" -} - -is_force_dns_active() { iptables-save 2>/dev/null | grep -q -w -- '--dport 53'; } - -start_service() { - local p=5053 c - config_load 'https-dns-proxy' - config_get dnsmasqConfig 'config' 'update_dnsmasq_config' '*' - config_get_bool forceDNS 'config' 'force_dns' '1' - config_get forceDNSPorts 'config' 'force_dns_port' '53 853' - dhcp_backup 'create' - config_load 'https-dns-proxy' - config_foreach start_instance 'https-dns-proxy' - if [ "$forceDNS" -ne 0 ]; then - procd_open_instance 'main' - procd_set_param command /bin/true - procd_set_param stdout 1 - procd_set_param stderr 1 - procd_open_data - json_add_array firewall - for c in $forceDNSPorts; do - if netstat -tuln | grep 'LISTEN' | grep ":${c}" >/dev/null 2>&1 || [ "$c" = "53" ]; then - json_add_object "" - json_add_string type redirect - json_add_string target DNAT - json_add_string src lan - json_add_string proto "tcp udp" - json_add_string src_dport "$c" - json_add_string dest_port "$c" - json_add_boolean reflection 0 - json_close_object - else - json_add_object "" - json_add_string type rule - json_add_string src lan - json_add_string dest "*" - json_add_string proto "tcp udp" - json_add_string dest_port "$c" - json_add_string target REJECT - json_close_object - fi - done - json_close_array - procd_close_data - procd_close_instance - fi - if [ -n "$(uci -q changes dhcp)" ]; then - uci -q commit dhcp - [ -x /etc/init.d/dnsmasq ] && /etc/init.d/dnsmasq restart >/dev/null 2>&1 - fi -} - -stop_service() { - config_load 'https-dns-proxy' - config_get dnsmasqConfig 'config' 'update_dnsmasq_config' '*' - dhcp_backup 'restore' - if [ -n "$(uci -q changes dhcp)" ]; then - uci -q commit dhcp - [ -x /etc/init.d/dnsmasq ] && /etc/init.d/dnsmasq restart >/dev/null 2>&1 - fi -} - -service_triggers() { - procd_add_config_trigger "config.change" "https-dns-proxy" /etc/init.d/https-dns-proxy reload -} - -service_started() { procd_set_config_changed firewall; } -service_stopped() { procd_set_config_changed firewall; } - -dnsmasq_add_doh_server() { - local cfg="$1" address="$2" port="$3" - case $address in - 0.0.0.0|::ffff:0.0.0.0) address='127.0.0.1';; - ::) address='::1';; - esac - uci -q del_list "dhcp.${cfg}.server=${address}#${port}" - uci -q add_list "dhcp.${cfg}.server=${address}#${port}" -} - -dnsmasq_create_server_backup() { - local cfg="$1" - local i - uci -q get "dhcp.${cfg}" >/dev/null || return 1 - if ! uci -q get "dhcp.${cfg}.doh_backup_noresolv" >/dev/null; then - if [ -z "$(uci -q get "dhcp.${cfg}.noresolv")" ]; then - uci -q set "dhcp.${cfg}.noresolv=1" - uci -q set "dhcp.${cfg}.doh_backup_noresolv=-1" - elif [ "$(uci -q get "dhcp.${cfg}.noresolv")" != "1" ]; then - uci -q set "dhcp.${cfg}.noresolv=1" - uci -q set "dhcp.${cfg}.doh_backup_noresolv=0" - fi - fi - if ! uci -q get "dhcp.${cfg}.doh_backup_server" >/dev/null; then - if [ -z "$(uci -q get "dhcp.${cfg}.server")" ]; then - uci -q add_list "dhcp.${cfg}.doh_backup_server=" - fi - for i in $(uci -q get "dhcp.${cfg}.server"); do - uci -q add_list "dhcp.${cfg}.doh_backup_server=$i" - if [ "$i" = "$(echo "$i" | tr -d /\#)" ]; then - uci -q del_list "dhcp.${cfg}.server=$i" - fi - done - uci -q del_list "dhcp.${cfg}.server=127.0.0.1#5353" - fi - return 0 -} - -dnsmasq_restore_server_backup() { - local cfg="$1" - local i - uci -q get "dhcp.${cfg}" >/dev/null || return 0 - if uci -q get "dhcp.${cfg}.doh_backup_noresolv" >/dev/null; then - if [ "$(uci -q get "dhcp.${cfg}.doh_backup_noresolv")" = "0" ]; then - uci -q set "dhcp.${cfg}.noresolv=0" - else - uci -q del "dhcp.${cfg}.noresolv" - fi - uci -q del "dhcp.${cfg}.doh_backup_noresolv" - fi - if uci -q get "dhcp.${cfg}.doh_backup_server" >/dev/null; then - uci -q del "dhcp.${cfg}.server" - for i in $(uci -q get "dhcp.${cfg}.doh_backup_server"); do - uci -q add_list "dhcp.${cfg}.server=$i" - done - uci -q del "dhcp.${cfg}.doh_backup_server" - fi -} - -dhcp_backup() { - local i - config_load 'dhcp' - case "$1" in - create) - if [ "$dnsmasqConfig" = "*" ]; then - config_foreach dnsmasq_create_server_backup 'dnsmasq' - elif [ -n "$dnsmasqConfig" ]; then - for i in $dnsmasqConfig; do - dnsmasq_create_server_backup "@dnsmasq[${i}]" || \ - dnsmasq_create_server_backup "$i" - done - fi - ;; - restore) - config_foreach dnsmasq_restore_server_backup 'dnsmasq' - ;; - esac -} diff --git a/https-dns-proxy/test.sh b/https-dns-proxy/test.sh deleted file mode 100644 index 45469ed96e..0000000000 --- a/https-dns-proxy/test.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -/etc/init.d/"$1" version 2>&1 | grep "$2" diff --git a/luci-app-https-dns-proxy/Makefile b/luci-app-https-dns-proxy/Makefile deleted file mode 100644 index c6f2da879e..0000000000 --- a/luci-app-https-dns-proxy/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2017-2018 Stan Grishin (stangri@melmac.net) -# 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 - -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:=3 -PKG_VERSION:=omr-202103 - -include $(TOPDIR)/feeds/luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua b/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua deleted file mode 100644 index d236feae0a..0000000000 --- a/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua +++ /dev/null @@ -1,25 +0,0 @@ -module("luci.controller.https-dns-proxy", package.seeall) -function index() - if nixio.fs.access("/etc/config/https-dns-proxy") then - entry({"admin", "services", "https-dns-proxy"}, cbi("https-dns-proxy"), _("DNS Over HTTPS Proxy")) - entry({"admin", "services", "https-dns-proxy", "action"}, call("https_dns_proxy_action"), nil).leaf = true - end -end - -function https_dns_proxy_action(name) - local packageName = "https-dns-proxy" - if name == "start" then - luci.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") - elseif name == "stop" then - luci.sys.init.stop(packageName) - elseif name == "enable" then - luci.sys.init.enable(packageName) - elseif name == "disable" then - luci.sys.init.disable(packageName) - end - luci.http.prepare_content("text/plain") - luci.http.write("0") -end diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/ch.digitale-gesellschaft.dns.lua deleted file mode 100644 index fc190437ca..0000000000 --- a/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/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua deleted file mode 100644 index 86c4c56dc1..0000000000 --- a/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/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua deleted file mode 100644 index 114d23ed5b..0000000000 --- a/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/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua deleted file mode 100644 index 56a409f916..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "AdGuard-Family", - label = _("AdGuard (Family Protection)"), - resolver_url = "https://dns-family.adguard.com/dns-query", - bootstrap_dns = "176.103.130.132,176.103.130.134", - help_link = "https://adguard.com/en/adguard-dns/overview.html", - help_link_text = "AdGuard.com" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua deleted file mode 100644 index 504070501f..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "AdGuard-Standard", - label = _("AdGuard (Standard)"), - resolver_url = "https://dns.adguard.com/dns-query", - bootstrap_dns = "176.103.130.130,176.103.130.131", - help_link = "https://adguard.com/en/adguard-dns/overview.html", - help_link_text = "AdGuard.com" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-family.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-family.lua deleted file mode 100644 index e63bf14adf..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-family.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - name = "Cloudflare for Families", - label = _("Cloudflare for Families"), - resolver_url = "https://family.cloudflare-dns.com/dns-query", - bootstrap_dns = "1.1.1.3,1.0.0.3" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-malware.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-malware.lua deleted file mode 100644 index f114f91e06..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns-malware.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - name = "Cloudflare Malware", - label = _("Cloudflare Malware"), - resolver_url = "https://security.cloudflare-dns.com/dns-query", - bootstrap_dns = "1.1.1.2,1.0.0.2" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua deleted file mode 100644 index e8673d5d58..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - name = "Cloudflare", - label = _("Cloudflare"), - resolver_url = "https://cloudflare-dns.com/dns-query", - bootstrap_dns = "1.1.1.1,1.0.0.1" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua deleted file mode 100644 index 3dfe309368..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/cz.nic.odvr.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - 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" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua deleted file mode 100644 index 6eab04064b..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - name = "Google", - label = _("Google"), - resolver_url = "https://dns.google/dns-query", - bootstrap_dns = "8.8.8.8,8.8.4.4", - default = true -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua deleted file mode 100644 index 22e6fffe41..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "LibreDNS (No Ads)", - label = _("LibreDNS (No Ads)"), - resolver_url = "https://doh.libredns.gr/ads", - bootstrap_dns = "116.202.176.26", - help_link = "https://libredns.gr/", - help_link_text = "LibreDNS.gr" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua deleted file mode 100644 index bd51e1be42..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "LibreDNS", - label = _("LibreDNS"), - resolver_url = "https://doh.libredns.gr/dns-query", - bootstrap_dns = "116.202.176.26", - help_link = "https://libredns.gr/", - help_link_text = "LibreDNS.gr" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua deleted file mode 100644 index eaa4b83703..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "Quad9-Recommended", - label = _("Quad 9 (Recommended)"), - resolver_url = "https://dns.quad9.net/dns-query", - bootstrap_dns = "9.9.9.9,149.112.112.112", - help_link = "https://www.quad9.net/doh-quad9-dns-servers/", - help_link_text = "Quad9.net" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua deleted file mode 100644 index 4d1914a0f6..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "Quad9-Unsecured", - label = _("Quad 9 (Unsecured)"), - resolver_url = "https://dns10.quad9.net/dns-query", - bootstrap_dns = "9.9.9.10,149.112.112.10", - help_link = "https://www.quad9.net/doh-quad9-dns-servers/", - help_link_text = "Quad9.net" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua deleted file mode 100644 index 36fbeb39e8..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "Quad9-ECS", - 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", - help_link = "https://www.quad9.net/doh-quad9-dns-servers/", - help_link_text = "Quad9.net" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua deleted file mode 100644 index 61ca444eff..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "Quad9-Secured", - label = _("Quad 9 (Secured)"), - resolver_url = "https://dns9.quad9.net/dns-query", - bootstrap_dns = "9.9.9.9,149.112.112.9", - help_link = "https://www.quad9.net/doh-quad9-dns-servers/", - help_link_text = "Quad9.net" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua deleted file mode 100644 index 5b4d908543..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "CleanBrowsing-Adult", - label = _("CleanBrowsing (Adult Filter)"), - resolver_url = "https://doh.cleanbrowsing.org/doh/adult-filter/", - bootstrap_dns = "185.228.168.168", - help_link = "https://cleanbrowsing.org/guides/dnsoverhttps", - help_link_text = "CleanBrowsing.org" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua deleted file mode 100644 index 47a0654d22..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "CleanBrowsing-Family", - label = _("CleanBrowsing (Family Filter)"), - resolver_url = "https://doh.cleanbrowsing.org/doh/family-filter/", - bootstrap_dns = "185.228.168.168", - help_link = "https://cleanbrowsing.org/guides/dnsoverhttps", - help_link_text = "CleanBrowsing.org" -} diff --git a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua b/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua deleted file mode 100644 index 6e370d513f..0000000000 --- a/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - name = "CleanBrowsing-Security", - label = _("CleanBrowsing (Security Filter)"), - resolver_url = "https://doh.cleanbrowsing.org/doh/security-filter/", - bootstrap_dns = "185.228.168.168", - help_link = "https://cleanbrowsing.org/guides/dnsoverhttps", - help_link_text = "CleanBrowsing.org" -} diff --git a/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua b/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua deleted file mode 100644 index d4fee9e003..0000000000 --- a/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua +++ /dev/null @@ -1,174 +0,0 @@ -local sys = require "luci.sys" -local util = require "luci.util" -local fs = require "nixio.fs" -local dispatcher = require "luci.dispatcher" -local i18n = require "luci.i18n" -local uci = require("luci.model.uci").cursor() - -local packageName = "https-dns-proxy" -local providers_dir = "/usr/lib/lua/luci/" .. packageName .. "/providers/" -local helperText = "" - -function create_helper_text() - 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 - local url, domain - url = p.help_link - domain = p.help_link_text or url:match('^%w+://([^/]+)') - if not helperText:find(domain) then - if helperText == "" then - helperText = initText - else - helperText = helperText .. ", " - end - helperText = helperText .. [[]] .. domain .. [[]] - end - end - end - if helperText ~= "" then - local a = helperText:gsub('(.*),%s.*$', '%1') - helperText = a .. " " .. translate("and") .. helperText:sub(#a + 2) .. "." - end -end - -function get_provider_name(value) - if value ~= nil then - for filename in fs.dir(providers_dir) do - local p_func = loadfile(providers_dir .. filename) - setfenv(p_func, { _ = i18n.translate }) - local p = p_func() - value = value:gsub('[%p%c%s]', '') - p.url_match = p.resolver_url:gsub('[%p%c%s]', '') - if value:match(p.url_match) then - return p.label - end - end - end - return translate("Unknown Provider") -end - -local tmpfsStatus, tmpfsStatusCode -local ubusStatus = util.ubus("service", "list", { name = packageName }) -local tmpfsVersion = tostring(util.trim(sys.exec("opkg list-installed " .. packageName .. " | awk '{print $3}'"))) - -if not tmpfsVersion or tmpfsVersion == "" then - tmpfsStatusCode = -1 - tmpfsVersion = "" - tmpfsStatus = packageName .. " " .. translate("is not installed or not found") -else - tmpfsVersion = " [" .. packageName .. " " .. tmpfsVersion .. "]" - if not ubusStatus or not ubusStatus[packageName] then - tmpfsStatusCode = 0 - tmpfsStatus = translate("Stopped") - if not luci.sys.init.enabled(packageName) then - tmpfsStatus = tmpfsStatus .. " (" .. translate("disabled") .. ")" - end - else - tmpfsStatusCode, tmpfsStatus = 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 - tmpfsStatus = tmpfsStatus .. translate("Running") .. ": " .. get_provider_name(url) .. " " .. translate("DoH") .. " " .. translate("at") .. " " .. la .. ":" .. lp .. "\n" - else - break - end - end - end -end - -m = Map("https-dns-proxy", translate("DNS Over HTTPS Proxy Settings")) - -h = m:section(TypedSection, "_dummy", translate("Service Status") .. tmpfsVersion) -h.template = "cbi/nullsection" -ss = h:option(DummyValue, "_dummy", translate("Service Status")) -if tmpfsStatusCode == -1 then - ss.template = packageName .. "/status" - ss.value = tmpfsStatus -else - if tmpfsStatusCode == 0 then - ss.template = packageName .. "/status" - else - ss.template = packageName .. "/status-textarea" - end - ss.value = tmpfsStatus - buttons = h:option(DummyValue, "_dummy") - buttons.template = packageName .. "/buttons" -end - -create_helper_text() -s3 = m:section(TypedSection, "https-dns-proxy", translate("Instances"), translate("When you add/remove any instances below, they will be used to override the 'DNS forwardings' section of ") - .. [[ ]] - .. translate("DHCP and DNS") .. [[]] .. "." .. helperText) -s3.template = "cbi/tblsection" -s3.sortable = false -s3.anonymous = true -s3.addremove = true - -prov = s3:option(ListValue, "resolver_url", translate("Resolver")) -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 p.default then - prov.default = p.resolver_url - end -end -prov.forcewrite = true -prov.write = function(self, section, value) - if not value then return end - for filename in fs.dir(providers_dir) do - local p_func = loadfile(providers_dir .. filename) - setfenv(p_func, { _ = i18n.translate }) - local p = p_func() - 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) - end - end - uci:save(packageName) -end - -la = s3:option(Value, "listen_addr", translate("Listen address")) -la.datatype = "host" -la.placeholder = "127.0.0.1" -la.rmempty = true - -local n = 0 -uci:foreach(packageName, packageName, function(s) - if s[".name"] == section then - return false - end - n = n + 1 -end) - -lp = s3:option(Value, "listen_port", translate("Listen port")) -lp.datatype = "port" -lp.value = n + 5053 - -sa = s3:option(Value, "edns_subnet", translate("EDNS client subnet")) -sa.rmempty = true - -ps = s3:option(Value, "proxy_server", translate("Proxy server")) -ps.rmempty = true - -return m diff --git a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm b/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm deleted file mode 100644 index b7fcd472ed..0000000000 --- a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm +++ /dev/null @@ -1,77 +0,0 @@ -<%# Copyright 2020 Stan Grishin -%> - -<%+https-dns-proxy/css%> -<%+https-dns-proxy/js%> - -<%- - local packageName = "https-dns-proxy" - local serviceRunning, serviceEnabled = false, false; - - serviceEnabled = luci.sys.init.enabled(packageName) - local ubusStatus = luci.util.ubus("service", "list", { name = packageName }) - if ubusStatus and ubusStatus[packageName] then - serviceRunning = true - end - - if serviceEnabled then - btn_start_status = true - btn_action_status = true - btn_stop_status = true - btn_enable_status = false - btn_disable_status = true - else - btn_start_status = false - btn_action_status = false - btn_stop_status = false - btn_enable_status = true - btn_disable_status = false - end - if serviceRunning then - btn_start_status = false - btn_action_status = true - btn_stop_status = true - else - btn_action_status = false - btn_stop_status = false - end --%> - -
-
- - - - - - -   -   -   -   - - - - -
-
- -<%-if not btn_start_status then%> - -<%-end%> -<%-if not btn_action_status then%> - -<%-end%> -<%-if not btn_stop_status then%> - -<%-end%> -<%-if not btn_enable_status then%> - -<%-end%> -<%-if not btn_disable_status then%> - -<%-end%> diff --git a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/css.htm b/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/css.htm deleted file mode 100644 index 6fb3d51d3b..0000000000 --- a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/css.htm +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm b/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm deleted file mode 100644 index fac92a3925..0000000000 --- a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/js.htm +++ /dev/null @@ -1,60 +0,0 @@ - - diff --git a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status-textarea.htm b/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status-textarea.htm deleted file mode 100644 index 3840cd19d4..0000000000 --- a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status-textarea.htm +++ /dev/null @@ -1,13 +0,0 @@ -<%# -Copyright 2017-2019 Stan Grishin (stangri@melmac.net) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+cbi/valueheader%> - - - -<%+cbi/valuefooter%> diff --git a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm b/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm deleted file mode 100644 index c453428405..0000000000 --- a/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/status.htm +++ /dev/null @@ -1,10 +0,0 @@ -<%# -Copyright 2017-2018 Dirk Brenken (dev@brenken.org) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+cbi/valueheader%> - - - -<%+cbi/valuefooter%> diff --git a/luci-app-https-dns-proxy/po/bg/https-dns-proxy.po b/luci-app-https-dns-proxy/po/bg/https-dns-proxy.po deleted file mode 100644 index 9187f341cd..0000000000 --- a/luci-app-https-dns-proxy/po/bg/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: bg\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/ca/https-dns-proxy.po b/luci-app-https-dns-proxy/po/ca/https-dns-proxy.po deleted file mode 100644 index dbdb2ea03e..0000000000 --- a/luci-app-https-dns-proxy/po/ca/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: ca\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/cs/https-dns-proxy.po b/luci-app-https-dns-proxy/po/cs/https-dns-proxy.po deleted file mode 100644 index aa4cd1f976..0000000000 --- a/luci-app-https-dns-proxy/po/cs/https-dns-proxy.po +++ /dev/null @@ -1,188 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-02 09:02+0000\n" -"Last-Translator: Pavel Borecki \n" -"Language-Team: Czech \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" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP a DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Povolit" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "Více informací o dalších možnostech" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Instance" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Naslouchající adresa" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -msgid "Listen port" -msgstr "Naslouchající port" - -#: 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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Proxy server" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Pokud níže přidáte nebo odeberete instance, budou použity k přepsání sekce " -"'DNS forwardings' v" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "a" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" - -#~ msgid "Provider" -#~ msgstr "Poskytovatel" - -#~ msgid "Subnet address" -#~ msgstr "Adresa podsítě" - -#~ msgid "HTTPS DNS Proxy" -#~ msgstr "HTTPS DNS Proxy" - -#~ msgid "HTTPS DNS Proxy Settings" -#~ msgstr "Nastavení HTTPS DNS Proxy" diff --git a/luci-app-https-dns-proxy/po/de/https-dns-proxy.po b/luci-app-https-dns-proxy/po/de/https-dns-proxy.po deleted file mode 100644 index 2ac46c51c6..0000000000 --- a/luci-app-https-dns-proxy/po/de/https-dns-proxy.po +++ /dev/null @@ -1,197 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-05 08:06+0000\n" -"Last-Translator: Tobias Strobel \n" -"Language-Team: German \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-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "AdGuard (Familienschutz)" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Familienfilter)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Familienfilter)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Sicherheitsfilter)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP und DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "DNS über HTTPS Proxy" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "DNS über HTTPS Proxyeinstellungen" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Deaktivieren" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "EDNS-Clientsubnetz" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Aktivieren" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -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/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "Google" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Instanzen" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Listen-Adresse" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -msgid "Listen port" -msgstr "Listen-Port" - -#: 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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Proxyserver" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "Quad 9 (empfohlen)" - -#: 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 (gesichert mit ECS-Unterstützung)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "Quad 9 (gesichert)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (ungesichert)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Neu laden" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Resolver" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "Laufend" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Dienststatus" - -#: 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:45 -msgid "Stop" -msgstr "Stoppen" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Angehalten" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Unbekannter Anbieter" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Wenn Sie untenstehende Instanzen hinzufügen/entfernen, werden sie für den " -"Abschnitt 'DNS-Weiterleitungen' verwendet von" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "und" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "bei" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "ist nicht installiert oder nicht gefunden" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" - -#~ msgid "DNS over HTTPS Proxy" -#~ msgstr "DNS über HTTPS Proxy" - -#~ msgid "DNS over HTTPS Proxy Settings" -#~ msgstr "DNS über HTTPS Proxy-Einstellungen" - -#~ msgid "Provider" -#~ msgstr "Anbieter" - -#~ msgid "Subnet address" -#~ msgstr "Subnetzadresse" - -#~ msgid "Uknown Provider" -#~ msgstr "Bekannter Anbieter" - -#~ msgid "HTTPS DNS Proxy" -#~ msgstr "HTTPS-DNS-Proxy" - -#~ msgid "HTTPS DNS Proxy Settings" -#~ msgstr "HTTPS-DNS-Proxyeinstellungen" diff --git a/luci-app-https-dns-proxy/po/el/https-dns-proxy.po b/luci-app-https-dns-proxy/po/el/https-dns-proxy.po deleted file mode 100644 index 2a8198caef..0000000000 --- a/luci-app-https-dns-proxy/po/el/https-dns-proxy.po +++ /dev/null @@ -1,174 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2019-12-03 08:25+0000\n" -"Last-Translator: Tavaninja \n" -"Language-Team: Greek \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" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/en/https-dns-proxy.po b/luci-app-https-dns-proxy/po/en/https-dns-proxy.po deleted file mode 100644 index 4c462b5c4d..0000000000 --- a/luci-app-https-dns-proxy/po/en/https-dns-proxy.po +++ /dev/null @@ -1,176 +0,0 @@ -msgid "" -msgstr "" -"Language: en\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -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/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/es/https-dns-proxy.po b/luci-app-https-dns-proxy/po/es/https-dns-proxy.po deleted file mode 100644 index 106045fbe0..0000000000 --- a/luci-app-https-dns-proxy/po/es/https-dns-proxy.po +++ /dev/null @@ -1,206 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2020-01-01 23:07+0000\n" -"Last-Translator: Franco Castillo \n" -"Language-Team: Spanish \n" -"Language: es\n" -"MIME-Version: 1.0\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" - -#: 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)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 -msgid "AdGuard (Standard)" -msgstr "AdGuard (estándar)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Filtro para adultos)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Filtro familiar)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Filtro de seguridad)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP y DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "DNS sobre proxy HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "Configuración de DNS sobre proxy HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Desactivar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "Subred de cliente EDNS" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Activar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -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/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "Google" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Instancias" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Escuchar dirección" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -msgid "Listen port" -msgstr "Puerto" - -#: 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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Servidor proxy" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "Quad 9 (recomendado)" - -#: 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 (Asegurado con soporte ECS)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "Quad 9 (Asegurado)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (No asegurado)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Recargar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Resolvedor" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "Corriendo" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Estado del servicio" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Iniciar" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Detener" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Detenido" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Proveedor desconocido" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Cuando agregue/elimine las instancias a continuación, se utilizarán para " -"anular la sección 'Reenvíos DNS' de" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "y" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "a" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "no está instalado o no se encuentra" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" - -#~ msgid "DNS over HTTPS Proxy" -#~ msgstr "DNS sobre proxy HTTPS" - -#~ msgid "DNS over HTTPS Proxy Settings" -#~ msgstr "Configuración de DNS sobre proxy HTTPS" - -#~ msgid "Provider" -#~ msgstr "Proveedor" - -#~ msgid "Subnet address" -#~ msgstr "Direccion de subred" - -#~ msgid "Uknown Provider" -#~ msgstr "Proveedor Desconocido" - -#~ msgid "HTTPS DNS Proxy" -#~ msgstr "Proxy DNS HTTPS" - -#~ msgid "HTTPS DNS Proxy Settings" -#~ msgstr "Configuración de proxy HTTPS DNS" - -#~ msgid "Group name" -#~ msgstr "Nombre del grupo" - -#~ msgid "User name" -#~ msgstr "Nombre de usuario" diff --git a/luci-app-https-dns-proxy/po/fr/https-dns-proxy.po b/luci-app-https-dns-proxy/po/fr/https-dns-proxy.po deleted file mode 100644 index c9259dae93..0000000000 --- a/luci-app-https-dns-proxy/po/fr/https-dns-proxy.po +++ /dev/null @@ -1,176 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-11 23:49+0000\n" -"Last-Translator: Hydci \n" -"Language-Team: French \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-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "AdGuard (protection de la famille)" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Filtre Adulte)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Filtre Famille)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Filtre Sécurité)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP et DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "Proxy DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "Paramètres du Proxy DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Désactiver" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "Sous-réseau client EDNS" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Activer" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -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/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "Google" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Instances" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Adresse d'écoute" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Serveur proxy" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "Quad 9 (recommandé)" - -#: 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 (sécurisé avec prise en charge ECS)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "Quad 9 (sécurisé)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (non sécurisé)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Recharger" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Résolveur" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "En cours d'exécution" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Statut du service" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Démarrer" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Arrêter" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Arrêté" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Proveedor desconocido" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Lorsque vous ajoutez/supprimez des instances ci-dessous, elles seront " -"utilisées pour passer outre la section \"redirections DNS\" de" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "et" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "à" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "n'est pas installé ou introuvable" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" diff --git a/luci-app-https-dns-proxy/po/he/https-dns-proxy.po b/luci-app-https-dns-proxy/po/he/https-dns-proxy.po deleted file mode 100644 index 3b445c8464..0000000000 --- a/luci-app-https-dns-proxy/po/he/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: he\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/hi/https-dns-proxy.po b/luci-app-https-dns-proxy/po/hi/https-dns-proxy.po deleted file mode 100644 index 49b6f01a24..0000000000 --- a/luci-app-https-dns-proxy/po/hi/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: hi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/hu/https-dns-proxy.po b/luci-app-https-dns-proxy/po/hu/https-dns-proxy.po deleted file mode 100644 index 2586d5604c..0000000000 --- a/luci-app-https-dns-proxy/po/hu/https-dns-proxy.po +++ /dev/null @@ -1,176 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-01 23:07+0000\n" -"Last-Translator: Balázs Úr \n" -"Language-Team: Hungarian \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" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "AdGuard (családvédelem)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 -msgid "AdGuard (Standard)" -msgstr "AdGuard (szabványos)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (felnőtt szűrő)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (családszűrő)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (biztonsági szűrő)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP és DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "DNS HTTPS-proxy fölött" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "DNS HTTPS-proxy fölött beállításai" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Letiltás" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "EDNS ügyfélalhálózat" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Engedélyezés" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -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/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "Google" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Példányok" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Cím figyelése" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -msgid "Listen port" -msgstr "Port figyelése" - -#: 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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Proxy-kiszolgáló" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "Quad 9 (ajánlott)" - -#: 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 (biztonságos ECS támogatással)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "Quad 9 (biztonságos)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (nem biztonságos)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Újratöltés" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Feloldó" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "Fut" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Szolgáltatás állapota" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Indítás" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Leállítás" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Leállítva" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Ismeretlen szolgáltató" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Ha bármely példányt hozzáadja vagy eltávolítja lent, akkor azok lesznek " -"használva a „DNS továbbítások” szakaszának felülbírálását ennek:" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "és" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "ekkor:" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "nincs telepítve vagy nem található" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" diff --git a/luci-app-https-dns-proxy/po/it/https-dns-proxy.po b/luci-app-https-dns-proxy/po/it/https-dns-proxy.po deleted file mode 100644 index 4d2faf50b4..0000000000 --- a/luci-app-https-dns-proxy/po/it/https-dns-proxy.po +++ /dev/null @@ -1,174 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-07 12:33+0000\n" -"Last-Translator: Giuseppe Valitutto \n" -"Language-Team: Italian \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" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP e DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Disabilita" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Abilita" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/ja/https-dns-proxy.po b/luci-app-https-dns-proxy/po/ja/https-dns-proxy.po deleted file mode 100644 index a3aa6bc9a0..0000000000 --- a/luci-app-https-dns-proxy/po/ja/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: ja\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/ko/https-dns-proxy.po b/luci-app-https-dns-proxy/po/ko/https-dns-proxy.po deleted file mode 100644 index 5a42245b70..0000000000 --- a/luci-app-https-dns-proxy/po/ko/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: ko\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/mr/https-dns-proxy.po b/luci-app-https-dns-proxy/po/mr/https-dns-proxy.po deleted file mode 100644 index 43cc03427d..0000000000 --- a/luci-app-https-dns-proxy/po/mr/https-dns-proxy.po +++ /dev/null @@ -1,176 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-07 09:19+0000\n" -"Last-Translator: Prachi Joshi \n" -"Language-Team: Marathi \n" -"Language: mr\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.11-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "अ‍ॅडगार्ड (कौटुंबिक संरक्षण)" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "क्लीन ब्राउझिंग (प्रौढ फिल्टर)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "क्लीन ब्राउझिंग (फॅमिली फिल्टर)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "क्लीन ब्राउझिंग (सुरक्षा फिल्टर)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "क्लाउडफ्लेअर" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "डीएचसीपी आणि डीएनएस" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "एचटीटीपीएस प्रॉक्सी वर डीएनएस" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "एचटीटीपीएस प्रॉक्सी सेटिंग वरील डीएनएस" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "अक्षम करा" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "ईडीएनएस क्लायंट सबनेट" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "सक्षम करा" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "वेगवेगळ्या पर्यायांवर अधिक माहितीसाठी तपासा" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "गूगल" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "उदाहरणे" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "ऐकण्याचा पत्ता" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "प्रॉक्सी सर्व्हर" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -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 "Quad 9 (ईसीएस समर्थनासह सुरक्षित)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -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 (असुरक्षित)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "रीलोड करा" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "निराकरणकर्ता" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "चालू आहे" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "सेवा स्थिती" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "प्रारंभ करा" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "थांबा" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "बंद" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "अज्ञात प्रदाता" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"जेव्हा आपण खाली कोणतीही उदाहरणे जोडता / काढता तेव्हा ती 'डीएनएस फॉरवर्डिंग' " -"विभागाच्या अधिलिखितसाठी वापरली जाईल" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "आणि" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "येथे" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "स्थापित केलेले नाही किंवा सापडले नाही" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" diff --git a/luci-app-https-dns-proxy/po/ms/https-dns-proxy.po b/luci-app-https-dns-proxy/po/ms/https-dns-proxy.po deleted file mode 100644 index 26b756b07b..0000000000 --- a/luci-app-https-dns-proxy/po/ms/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: ms\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po b/luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po deleted file mode 100644 index 63734bc2e2..0000000000 --- a/luci-app-https-dns-proxy/po/nb_NO/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: nb_NO\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/pl/https-dns-proxy.po b/luci-app-https-dns-proxy/po/pl/https-dns-proxy.po deleted file mode 100644 index ddfc9516e7..0000000000 --- a/luci-app-https-dns-proxy/po/pl/https-dns-proxy.po +++ /dev/null @@ -1,198 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-02 19:50+0000\n" -"Last-Translator: Marcin Net \n" -"Language-Team: Polish \n" -"Language: pl\n" -"Content-Type: text/plain; charset=UTF-8\n" -"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.0-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "AdGuard (Ochrona rodzinna)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 -msgid "AdGuard (Standard)" -msgstr "AdGuard (Standardowy)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Filtr treści dla dorosłych)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Filtr rodzinny)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Filtr bezpieczeństwa)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP i DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "Ustawienia DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Wyłącz" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "Podsieć klienta EDNS" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Włącz" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "Aby uzyskać więcej informacji na temat różnych opcji, sprawdź" - -#: 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/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Instancje" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Nasłuchiwany adres" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -msgid "Listen port" -msgstr "Nasłuchiwany port" - -#: 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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Serwer proxy" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "Quad 9 (Zalecane)" - -#: 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 (Zabezpieczony z obsługą ECS)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "Quad 9 (Zabezpieczony)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (Niezabezpieczony)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Przeładuj" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Dostawca" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "Działa" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Status usługi" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Uruchom" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Stop" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Zatrzymany" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Nieznany dostawca" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Po dodaniu/usunięciu dowolnej instancji poniżej, zastąpią one ustawienia " -"sekcji 'Przekazywania DNS' w" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "i" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "na" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "nie jest zainstalowany lub nie znaleziono" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" - -#~ msgid "DNS over HTTPS Proxy" -#~ msgstr "Proxy DNS over HTTPS" - -#~ msgid "DNS over HTTPS Proxy Settings" -#~ msgstr "Ustawiania proxy DNS over HTTPS" - -#~ msgid "Provider" -#~ msgstr "Dostawca" - -#~ msgid "Subnet address" -#~ msgstr "Adres podsieci" - -#~ msgid "Uknown Provider" -#~ msgstr "Nieznany dostawca" - -#~ msgid "HTTPS DNS Proxy" -#~ msgstr "HTTPS DNS Proxy" - -#~ msgid "HTTPS DNS Proxy Settings" -#~ msgstr "Ustawienia Proxy HTTPS DNS" diff --git a/luci-app-https-dns-proxy/po/pt/https-dns-proxy.po b/luci-app-https-dns-proxy/po/pt/https-dns-proxy.po deleted file mode 100644 index 347238f56b..0000000000 --- a/luci-app-https-dns-proxy/po/pt/https-dns-proxy.po +++ /dev/null @@ -1,197 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-02 16:07+0000\n" -"Last-Translator: ssantos \n" -"Language-Team: Portuguese \n" -"Language: pt\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" - -#: 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)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 -msgid "AdGuard (Standard)" -msgstr "AdGuard (Padrão)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Filtro Adulto)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Filtro para a Familia)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Filtro de Segurança)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP e DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "Proxy de DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "Configurações de Proxy de DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Desativar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "Sub-rede de clientes EDNS" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Ativar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -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/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "Google" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Instâncias" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Endereço de escuta" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Servidor proxy" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "Quad 9 (Recomendado)" - -#: 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 (Protegido com Suporte de ECS)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "Quad 9 (Seguro)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (Sem Segurança)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Recarregar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Resolvedor" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "Executando" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Estado do Serviço" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Iniciar" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Parar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Parado" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Provedor Desconhecido" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Quando adicionar/remover quaisquer instâncias abaixo, serão usadas para " -"substituir a seção 'DNS forwardings' de" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "e" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "em" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "não está instalado ou não foi encontrado" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" - -#~ msgid "DNS over HTTPS Proxy" -#~ msgstr "Proxy de DNS sobre HTTPS" - -#~ msgid "DNS over HTTPS Proxy Settings" -#~ msgstr "Configurações de Proxy DNS sobre HTTPS" - -#~ msgid "Provider" -#~ msgstr "Provedor" - -#~ msgid "Subnet address" -#~ msgstr "Endereço de sub-rede" - -#~ msgid "Uknown Provider" -#~ msgstr "Provedor Desconhecido" - -#~ msgid "HTTPS DNS Proxy" -#~ msgstr "Proxy de DNS HTTPS" - -#~ msgid "HTTPS DNS Proxy Settings" -#~ msgstr "Configurações de proxy HTTPS DNS" diff --git a/luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po b/luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po deleted file mode 100644 index a0bc44ca4a..0000000000 --- a/luci-app-https-dns-proxy/po/pt_BR/https-dns-proxy.po +++ /dev/null @@ -1,191 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-21 21:18+0000\n" -"Last-Translator: Wellington Terumi Uemura \n" -"Language-Team: Portuguese (Brazil) \n" -"Language: pt_BR\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.11.1\n" - -#: 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)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns.lua:3 -msgid "AdGuard (Standard)" -msgstr "AdGuard (Padrão)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Filtro Adulto)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Filtro Familiar)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Filtro de Segurança)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP e DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "DNS sobre Proxy HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "Configurações de Proxy DNS sobre HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Desativar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "Sub-rede de clientes EDNS" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Ativar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -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/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "Google" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Instâncias" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Escutar endereço" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Servidor proxy" - -#: 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)" - -#: 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 (Protegido com Suporte a ECS)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "Quad 9 (Seguro)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (Sem Segurança)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Recarregar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Resolvedor" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "Em execução" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Condição do Serviço" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Iniciar" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Parar" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Parado" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Provedor Desconhecido" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" -"Quando você adiciona/remove quaisquer instâncias abaixo, elas serão usadas " -"para substituir a seção 'Encaminhamentos DNS' de" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "e" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "em" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "não está instalado ou não foi encontrado" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" - -#~ msgid "DNS over HTTPS Proxy" -#~ msgstr "DNS sobre Proxy HTTPS" - -#~ msgid "DNS over HTTPS Proxy Settings" -#~ msgstr "Configurações de DNS sobre Proxy HTTPS" - -#~ msgid "Provider" -#~ msgstr "Provedor" - -#~ msgid "Subnet address" -#~ msgstr "Endereço de sub-rede" - -#~ msgid "Uknown Provider" -#~ msgstr "Provedor Desconhecido" diff --git a/luci-app-https-dns-proxy/po/ro/https-dns-proxy.po b/luci-app-https-dns-proxy/po/ro/https-dns-proxy.po deleted file mode 100644 index fbffd76c08..0000000000 --- a/luci-app-https-dns-proxy/po/ro/https-dns-proxy.po +++ /dev/null @@ -1,175 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-10 12:24+0000\n" -"Last-Translator: Alexandru Stan \n" -"Language-Team: Romanian \n" -"Language: ro\n" -"Content-Type: text/plain; charset=UTF-8\n" -"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" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Dezactivează" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Activează" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -msgid "Listen port" -msgstr "" - -#: 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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Pornește" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/ru/https-dns-proxy.po b/luci-app-https-dns-proxy/po/ru/https-dns-proxy.po deleted file mode 100644 index 506cc926d3..0000000000 --- a/luci-app-https-dns-proxy/po/ru/https-dns-proxy.po +++ /dev/null @@ -1,175 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-24 16:46+0000\n" -"Last-Translator: Константин \n" -"Language-Team: Russian \n" -"Language: ru\n" -"Content-Type: text/plain; charset=UTF-8\n" -"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.0-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Фильтр для взрослых)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Семейный фильтр)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Фильтр безопасности)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP и DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "Настройки DNS Over HTTPS" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Отключить" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "Клиентская подсеть EDNS" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Включить" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "Для получения дополнительной информации о различных опциях, проверьте" - -#: 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/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Адрес" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Прокси сервер" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -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 "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 (Защищен)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Перезапустить" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "Поставщик" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "Запущен" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Статус сервиса" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Запустить" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Остановить" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Остановлено" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Неизвестный поставщик" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "и" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "не установлен или не найден" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/sk/https-dns-proxy.po b/luci-app-https-dns-proxy/po/sk/https-dns-proxy.po deleted file mode 100644 index 802f26451d..0000000000 --- a/luci-app-https-dns-proxy/po/sk/https-dns-proxy.po +++ /dev/null @@ -1,174 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-04 17:35+0000\n" -"Last-Translator: Dušan Kazik \n" -"Language-Team: Slovak \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" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP a DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Zakázať" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Spustiť" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Zastaviť" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/sv/https-dns-proxy.po b/luci-app-https-dns-proxy/po/sv/https-dns-proxy.po deleted file mode 100644 index 88edf2604f..0000000000 --- a/luci-app-https-dns-proxy/po/sv/https-dns-proxy.po +++ /dev/null @@ -1,174 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2019-12-03 08:25+0000\n" -"Last-Translator: Mattias Münster \n" -"Language-Team: Swedish \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 3.10-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP och DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Inaktivera" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Aktivera" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Lyssningsadress" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -msgid "Listen port" -msgstr "Lyssningsport" - -#: 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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "Ladda om" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Starta" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Stoppad" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot b/luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot deleted file mode 100644 index 6b7877f265..0000000000 --- a/luci-app-https-dns-proxy/po/templates/https-dns-proxy.pot +++ /dev/null @@ -1,177 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:116 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:94 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:86 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:166 -msgid "EDNS client subnet" -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:13 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh.lua:3 -msgid "LibreDNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/gr.libredns.doh-ads.lua:3 -msgid "LibreDNS (No Ads)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:149 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:162 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:169 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: 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:122 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:86 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:96 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:98 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -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:64 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:49 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:114 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:34 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:86 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -msgid "disabled" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:59 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/tr/https-dns-proxy.po b/luci-app-https-dns-proxy/po/tr/https-dns-proxy.po deleted file mode 100644 index aa8333eab7..0000000000 --- a/luci-app-https-dns-proxy/po/tr/https-dns-proxy.po +++ /dev/null @@ -1,174 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2019-12-09 20:04+0000\n" -"Last-Translator: İsmail Karslı \n" -"Language-Team: Turkish \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 3.10-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Durdur" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/uk/https-dns-proxy.po b/luci-app-https-dns-proxy/po/uk/https-dns-proxy.po deleted file mode 100644 index 7c09b62e85..0000000000 --- a/luci-app-https-dns-proxy/po/uk/https-dns-proxy.po +++ /dev/null @@ -1,175 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-11 01:51+0000\n" -"Last-Translator: Olexandr Nesterenko \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"Content-Type: text/plain; charset=UTF-8\n" -"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.0-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing (Віковий фільтр)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing (Сімейний фільтр)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing (Безпечний фільтр)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP та DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "DNS через HTTPS проксі" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "Налаштування DNS через HTTPS проксі" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "Вимкнути" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "Клієнтська підмережа EDNS" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "Увімкнути" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "Для більш детальної інформації по параметрах, перевірте" - -#: 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/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "Приклади застосування" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "Адреса для прослуховування" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "Проксі сервер" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -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 "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 (Захищено)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9 (Не захищено)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "Стан сервісу" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "Запустити" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "Зупинити" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "Зупинено" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "Невідомий постачальник" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "та" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "не встановлено, або не знайдено" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" diff --git a/luci-app-https-dns-proxy/po/vi/https-dns-proxy.po b/luci-app-https-dns-proxy/po/vi/https-dns-proxy.po deleted file mode 100644 index 918e17c851..0000000000 --- a/luci-app-https-dns-proxy/po/vi/https-dns-proxy.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Language: vi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" diff --git a/luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po b/luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po deleted file mode 100644 index ea8bc1f612..0000000000 --- a/luci-app-https-dns-proxy/po/zh_Hans/https-dns-proxy.po +++ /dev/null @@ -1,207 +0,0 @@ -# -# Yangfl , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2020-02-19 13:30+0000\n" -"Last-Translator: xiazhang \n" -"Language-Team: Chinese (Simplified) \n" -"Language: zh_Hans\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.11\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "CleanBrowsing(成人过滤器)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "CleanBrowsing(家庭过滤器)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "CleanBrowsing(安全筛选器)" - -#: 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/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "DHCP/DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "通过 HTTPS 代理的 DNS" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "通过 HTTPS 代理的 DNS 设置" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -msgstr "DNS.SB" - -#: 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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "禁用" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "DoH" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "EDNS 客户端子网" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "启用" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "有关不同选项的更多信息,请检查" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "谷歌" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "实例" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "监听地址" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "ODVR (nic.cz)" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "代理服务器" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -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 "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(安全)" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "Quad 9(不安全)" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "重新载入" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "解析器" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "运行中" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "服务状态" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "启动" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "停止" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "已停止" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "未知的提供商" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "当您添加/删除下面的任何实例时,它们将用于覆盖以下实例的“ DNS转发”部分" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "和" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "在" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "未安装或未找到" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "rubyfish.cn" - -#~ msgid "DNS over HTTPS Proxy" -#~ msgstr "DNS over HTTPS 代理" - -#~ msgid "DNS over HTTPS Proxy Settings" -#~ msgstr "DNS over HTTPS代理设置" - -#~ msgid "Provider" -#~ msgstr "提供商" - -#~ msgid "Subnet address" -#~ msgstr "子网地址" - -#~ msgid "Uknown Provider" -#~ msgstr "未知提供商" - -#~ msgid "HTTPS DNS Proxy" -#~ msgstr "HTTPS DNS 代理" - -#~ msgid "HTTPS DNS Proxy Settings" -#~ msgstr "HTTPS DNS 代理设置" - -#~ msgid "Group name" -#~ msgstr "组名称" - -#~ msgid "User name" -#~ msgstr "用户名" diff --git a/luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po b/luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po deleted file mode 100644 index dd7a75f8ad..0000000000 --- a/luci-app-https-dns-proxy/po/zh_Hant/https-dns-proxy.po +++ /dev/null @@ -1,198 +0,0 @@ -# -# Yangfl , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2020-02-25 23:11+0000\n" -"Last-Translator: Trevor \n" -"Language-Team: Chinese (Traditional) \n" -"Language: zh_Hant\n" -"MIME-Version: 1.0\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.0-dev\n" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.adguard.dns-family.lua:3 -msgid "AdGuard (Family Protection)" -msgstr "" - -#: 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/org.cleanbrowsing.doh-adult.lua:3 -msgid "CleanBrowsing (Adult Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-family.lua:3 -msgid "CleanBrowsing (Family Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/org.cleanbrowsing.doh-security.lua:3 -msgid "CleanBrowsing (Security Filter)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.lua:3 -msgid "Cloudflare" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:85 -msgid "DHCP and DNS" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/controller/https-dns-proxy.lua:4 -msgid "DNS Over HTTPS Proxy" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:64 -msgid "DNS Over HTTPS Proxy Settings" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/sb.dns.lua:3 -msgid "DNS.SB" -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/view/https-dns-proxy/buttons.htm:53 -msgid "Disable" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "DoH" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:143 -msgid "EDNS client subnet" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:51 -msgid "Enable" -msgstr "啟用" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:87 -msgid "For more information on different options check" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/google.dns.lua:3 -msgid "Google" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "Instances" -msgstr "例項" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:126 -msgid "Listen address" -msgstr "監聽位址" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:139 -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/cz.nic.odvr.lua:3 -msgid "ODVR (nic.cz)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:146 -msgid "Proxy server" -msgstr "代理伺服器" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns.lua:3 -msgid "Quad 9 (Recommended)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns11.lua:3 -msgid "Quad 9 (Secured with ECS Support)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns9.lua:3 -msgid "Quad 9 (Secured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/net.quad9.dns10.lua:3 -msgid "Quad 9 (Unsecured)" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:43 -msgid "Reload" -msgstr "重新載入" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:99 -msgid "Resolver" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "Running" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:66 -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:68 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm:45 -msgid "Stop" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:37 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:22 -msgid "Unknown Provider" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:83 -msgid "" -"When you add/remove any instances below, they will be used to override the " -"'DNS forwardings' section of" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:91 -msgid "and" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:56 -msgid "at" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua:32 -msgid "is not installed or not found" -msgstr "" - -#: applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers.disabled/cn.rubyfish.dns.lua:3 -msgid "rubyfish.cn" -msgstr "" - -#~ msgid "Provider" -#~ msgstr "提供商" - -#~ msgid "Subnet address" -#~ msgstr "子網位址" - -#~ msgid "HTTPS DNS Proxy" -#~ msgstr "HTTPS DNS 代理" - -#~ msgid "HTTPS DNS Proxy Settings" -#~ msgstr "HTTPS DNS 代理設定" - -#~ msgid "Group name" -#~ msgstr "組名稱" - -#~ msgid "User name" -#~ msgstr "使用者名稱" diff --git a/luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy b/luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy deleted file mode 100644 index a1ecfcea24..0000000000 --- a/luci-app-https-dns-proxy/root/etc/uci-defaults/40_luci-https-dns-proxy +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -rm -rf /var/luci-modulecache/; rm -f /var/luci-indexcache; -exit 0 diff --git a/luci-app-https-dns-proxy/root/usr/share/luci/menu.d/luci-app-https-dns-proxy.json b/luci-app-https-dns-proxy/root/usr/share/luci/menu.d/luci-app-https-dns-proxy.json deleted file mode 100644 index 6b44c21df4..0000000000 --- a/luci-app-https-dns-proxy/root/usr/share/luci/menu.d/luci-app-https-dns-proxy.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "admin/services/https-dns-proxy": { - "title": "Proxy DNS Over HTTPS", - "order": 20, - "action": { - "type": "cbi", - "path": "https-dns-proxy" - }, - "depends": { - "acl": [ "luci-app-https-dns-proxy" ] - } - } -} diff --git a/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json b/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json deleted file mode 100644 index b2f1cbc0d2..0000000000 --- a/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "luci-app-https-dns-proxy": { - "description": "Grant UCI access for luci-app-https-dns-proxy", - "read": { - "uci": [ "https-dns-proxy" ] - }, - "write": { - "uci": [ "https-dns-proxy" ] - } - } -} \ No newline at end of file From 6cacf2cc06616f429743fc2d835a9efd17440913 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 11:03:38 +0100 Subject: [PATCH 03/10] Add smartdns --- luci-app-smartdns/Makefile | 25 + .../resources/view/smartdns/smartdns.js | 1178 +++++++++++++++++ luci-app-smartdns/po/ar/smartdns.po | 897 +++++++++++++ luci-app-smartdns/po/bg/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/bn_BD/smartdns.po | 892 +++++++++++++ luci-app-smartdns/po/ca/smartdns.po | 893 +++++++++++++ luci-app-smartdns/po/cs/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/da/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/de/smartdns.po | 963 ++++++++++++++ luci-app-smartdns/po/el/smartdns.po | 893 +++++++++++++ luci-app-smartdns/po/es/smartdns.po | 1021 ++++++++++++++ luci-app-smartdns/po/fi/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/fr/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/ga/smartdns.po | 944 +++++++++++++ luci-app-smartdns/po/he/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/hi/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/hu/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/it/smartdns.po | 902 +++++++++++++ luci-app-smartdns/po/ja/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/ko/smartdns.po | 893 +++++++++++++ luci-app-smartdns/po/lt/smartdns.po | 910 +++++++++++++ luci-app-smartdns/po/mr/smartdns.po | 892 +++++++++++++ luci-app-smartdns/po/ms/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/nb_NO/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/nl/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/pl/smartdns.po | 949 +++++++++++++ luci-app-smartdns/po/pt/smartdns.po | 945 +++++++++++++ luci-app-smartdns/po/pt_BR/smartdns.po | 982 ++++++++++++++ luci-app-smartdns/po/ro/smartdns.po | 897 +++++++++++++ luci-app-smartdns/po/ru/smartdns.po | 951 +++++++++++++ luci-app-smartdns/po/sk/smartdns.po | 893 +++++++++++++ luci-app-smartdns/po/sv/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/templates/smartdns.pot | 885 +++++++++++++ luci-app-smartdns/po/tr/smartdns.po | 938 +++++++++++++ luci-app-smartdns/po/uk/smartdns.po | 897 +++++++++++++ luci-app-smartdns/po/vi/smartdns.po | 896 +++++++++++++ luci-app-smartdns/po/zh_Hans/smartdns.po | 917 +++++++++++++ luci-app-smartdns/po/zh_Hant/smartdns.po | 950 +++++++++++++ .../share/luci/menu.d/luci-app-smartdns.json | 12 + .../share/rpcd/acl.d/luci-app-smartdns.json | 22 + openmptcprouter-full/Makefile | 7 +- 41 files changed, 34089 insertions(+), 3 deletions(-) create mode 100644 luci-app-smartdns/Makefile create mode 100644 luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js create mode 100644 luci-app-smartdns/po/ar/smartdns.po create mode 100644 luci-app-smartdns/po/bg/smartdns.po create mode 100644 luci-app-smartdns/po/bn_BD/smartdns.po create mode 100644 luci-app-smartdns/po/ca/smartdns.po create mode 100644 luci-app-smartdns/po/cs/smartdns.po create mode 100644 luci-app-smartdns/po/da/smartdns.po create mode 100644 luci-app-smartdns/po/de/smartdns.po create mode 100644 luci-app-smartdns/po/el/smartdns.po create mode 100644 luci-app-smartdns/po/es/smartdns.po create mode 100644 luci-app-smartdns/po/fi/smartdns.po create mode 100644 luci-app-smartdns/po/fr/smartdns.po create mode 100644 luci-app-smartdns/po/ga/smartdns.po create mode 100644 luci-app-smartdns/po/he/smartdns.po create mode 100644 luci-app-smartdns/po/hi/smartdns.po create mode 100644 luci-app-smartdns/po/hu/smartdns.po create mode 100644 luci-app-smartdns/po/it/smartdns.po create mode 100644 luci-app-smartdns/po/ja/smartdns.po create mode 100644 luci-app-smartdns/po/ko/smartdns.po create mode 100644 luci-app-smartdns/po/lt/smartdns.po create mode 100644 luci-app-smartdns/po/mr/smartdns.po create mode 100644 luci-app-smartdns/po/ms/smartdns.po create mode 100644 luci-app-smartdns/po/nb_NO/smartdns.po create mode 100644 luci-app-smartdns/po/nl/smartdns.po create mode 100644 luci-app-smartdns/po/pl/smartdns.po create mode 100644 luci-app-smartdns/po/pt/smartdns.po create mode 100644 luci-app-smartdns/po/pt_BR/smartdns.po create mode 100644 luci-app-smartdns/po/ro/smartdns.po create mode 100644 luci-app-smartdns/po/ru/smartdns.po create mode 100644 luci-app-smartdns/po/sk/smartdns.po create mode 100644 luci-app-smartdns/po/sv/smartdns.po create mode 100644 luci-app-smartdns/po/templates/smartdns.pot create mode 100644 luci-app-smartdns/po/tr/smartdns.po create mode 100644 luci-app-smartdns/po/uk/smartdns.po create mode 100644 luci-app-smartdns/po/vi/smartdns.po create mode 100644 luci-app-smartdns/po/zh_Hans/smartdns.po create mode 100644 luci-app-smartdns/po/zh_Hant/smartdns.po create mode 100644 luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json create mode 100644 luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json diff --git a/luci-app-smartdns/Makefile b/luci-app-smartdns/Makefile new file mode 100644 index 0000000000..875a50347d --- /dev/null +++ b/luci-app-smartdns/Makefile @@ -0,0 +1,25 @@ +# +# Copyright 2018-2020 Nick Peng +# Licensed to the public under the GPL V3 License. + +include $(TOPDIR)/rules.mk + +PKG_LICENSE:=GPL-3.0-or-later +PKG_MAINTAINER:=Nick Peng +PKG_VERSION:=1.2023.42 +PKG_RELEASE:=1 + +LUCI_TITLE:=LuCI for smartdns +LUCI_DESCRIPTION:=Provides Luci for smartdns +LUCI_DEPENDS:=+luci-base +smartdns + +define Package/$(PKG_NAME)/config +# shown in make menuconfig +help + $(LUCI_TITLE) + Version: $(PKG_VERSION)-$(PKG_RELEASE) +endef + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js b/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js new file mode 100644 index 0000000000..191e57e58d --- /dev/null +++ b/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js @@ -0,0 +1,1178 @@ +/************************************************************************* + * + * Copyright (C) 2018-2023 Ruilin Peng (Nick) . + * + * smartdns is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * smartdns is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + + +'use strict'; +'require fs'; +'require uci'; +'require form'; +'require view'; +'require poll'; +'require rpc'; +'require ui'; + +var conf = 'smartdns'; +var callServiceList = rpc.declare({ + object: 'service', + method: 'list', + params: ['name'], + expect: { '': {} } +}); +var pollAdded = false; + +function getServiceStatus() { + return L.resolveDefault(callServiceList(conf), {}) + .then(function (res) { + var is_running = false; + try { + is_running = res[conf]['instances']['smartdns']['running']; + } catch (e) { } + return is_running; + }); +} + +function smartdnsServiceStatus() { + return Promise.all([ + getServiceStatus() + ]); +} + +function smartdnsRenderStatus(res) { + var renderHTML = ""; + var isRunning = res[0]; + + var autoSetDnsmasq = uci.get_first('smartdns', 'smartdns', 'auto_set_dnsmasq'); + var smartdnsPort = uci.get_first('smartdns', 'smartdns', 'port'); + var dnsmasqServer = uci.get_first('dhcp', 'dnsmasq', 'server'); + + if (isRunning) { + renderHTML += "SmartDNS - " + _("RUNNING") + ""; + } else { + renderHTML += "SmartDNS - " + _("NOT RUNNING") + ""; + return renderHTML; + } + + if (autoSetDnsmasq === '1' && smartdnsPort != '53') { + var matchLine = "127.0.0.1#" + smartdnsPort; + + uci.unload('dhcp'); + uci.load('dhcp'); + if (dnsmasqServer == undefined || dnsmasqServer.indexOf(matchLine) < 0) { + renderHTML += "
" + _("Dnsmasq Forwarded To Smartdns Failure") + ""; + } + } + + return renderHTML; +} + +return view.extend({ + load: function () { + return Promise.all([ + uci.load('dhcp'), + uci.load('smartdns'), + ]); + }, + render: function (stats) { + var m, s, o; + var ss, so; + var servers, download_files; + + m = new form.Map('smartdns', _('SmartDNS')); + m.title = _("SmartDNS Server"); + m.description = _("SmartDNS is a local high-performance DNS server, supports finding fastest IP, " + + "supports ad filtering, and supports avoiding DNS poisoning."); + + s = m.section(form.NamedSection, '_status'); + s.anonymous = true; + s.render = function (section_id) { + var renderStatus = function () { + return L.resolveDefault(smartdnsServiceStatus()).then(function (res) { + var view = document.getElementById("service_status"); + if (view == null) { + return; + } + + view.innerHTML = smartdnsRenderStatus(res); + }); + } + + if (pollAdded == false) { + poll.add(renderStatus, 1); + pollAdded = true; + } + + return E('div', { class: 'cbi-section' }, [ + E('div', { id: 'service_status' }, + _('Collecting data ...')) + ]); + } + + //////////////// + // Basic; + //////////////// + s = m.section(form.TypedSection, "smartdns", _("Settings"), _("General Settings")); + s.anonymous = true; + + s.tab("settings", _("General Settings")); + s.tab("advanced", _('Advanced Settings')); + s.tab("seconddns", _("Second Server Settings")); + s.tab("dns64", _("DNS64 Server Settings")); + s.tab("files", _("Download Files Setting"), _("Download domain list files for domain-rule and include config files, please refresh the page after download to take effect.")); + s.tab("proxy", _("Proxy Server Settings")); + s.tab("custom", _("Custom Settings")); + + /////////////////////////////////////// + // Basic Settings + /////////////////////////////////////// + o = s.taboption("settings", form.Flag, "enabled", _("Enable"), _("Enable or disable smartdns server")); + o.rmempty = false; + o.default = o.disabled; + + // server name; + o = s.taboption("settings", form.Value, "server_name", _("Server Name"), _("Smartdns server name")); + o.default = "smartdns"; + o.datatype = "hostname"; + o.rempty = false; + + // Port; + o = s.taboption("settings", form.Value, "port", _("Local Port"), + _("Smartdns local server port, smartdns will be automatically set as main dns when the port is 53.")); + o.placeholder = 53; + o.default = 53; + o.datatype = "port"; + o.rempty = false; + + // auto-conf-dnsmasq; + o = s.taboption("settings", form.Flag, "auto_set_dnsmasq", _("Automatically Set Dnsmasq"), _("Automatically set as upstream of dnsmasq when port changes.")); + o.rmempty = false; + o.default = o.enabled; + + /////////////////////////////////////// + // advanced settings; + /////////////////////////////////////// + // Speed check mode; + o = s.taboption("advanced", form.Value, "speed_check_mode", _("Speed Check Mode"), _("Smartdns speed check mode.")); + o.rmempty = true; + o.placeholder = "default"; + o.value("", _("default")); + o.value("ping,tcp:80,tcp:443"); + o.value("ping,tcp:443,tcp:80"); + o.value("tcp:80,tcp:443,ping"); + o.value("tcp:443,tcp:80,ping"); + o.value("none", _("None")); + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + if (value == "none") { + return true; + } + + var check_mode = value.split(",") + for (var i = 0; i < check_mode.length; i++) { + if (check_mode[i] == "ping") { + continue; + } + + if (check_mode[i].indexOf("tcp:") == 0) { + var port = check_mode[i].split(":")[1]; + if (port == "") { + return _("TCP port is empty"); + } + + continue; + } + + return _("Speed check mode is invalid."); + } + + return true; + } + + // response mode; + o = s.taboption("advanced", form.ListValue, "response_mode", _("Response Mode"), + _("Smartdns response mode, First Ping: return the first ping IP, Fastest IP: return the fastest IP, Fastest Response: return the fastest DNS response.")); + o.rmempty = true; + o.placeholder = "default"; + o.value("", _("default")); + o.value("first-ping", _("First Ping")); + o.value("fastest-ip", _("Fastest IP")); + o.value("fastest-response", _("Fastest Response")); + + // Enable TCP server; + o = s.taboption("advanced", form.Flag, "tcp_server", _("TCP Server"), _("Enable TCP DNS Server")); + o.rmempty = false; + o.default = o.enabled; + + // Support IPV6; + o = s.taboption("advanced", form.Flag, "ipv6_server", _("IPV6 Server"), _("Enable IPV6 DNS Server")); + o.rmempty = false; + o.default = o.enabled; + + // bind to device; + o = s.taboption("advanced", form.Flag, "bind_device", _("Bind Device"), _("Listen only on the specified interfaces.")); + o.rmempty = false; + o.default = o.enabled; + + // bind device name; + o = s.taboption("advanced", form.Value, "bind_device_name", _("Bind Device Name"), _("Name of device name listen on.")); + o.placeholder = "default"; + o.rempty = true; + o.datatype = "string"; + + // Support DualStack ip selection; + o = s.taboption("advanced", form.Flag, "dualstack_ip_selection", _("Dual-stack IP Selection"), + _("Enable IP selection between IPV4 and IPV6")); + o.rmempty = false; + o.default = o.enabled; + + // Domain prefetch load ; + o = s.taboption("advanced", form.Flag, "prefetch_domain", _("Domain prefetch"), + _("Enable domain prefetch, accelerate domain response speed.")); + o.rmempty = true; + o.default = o.disabled; + + // Domain Serve expired + o = s.taboption("advanced", form.Flag, "serve_expired", _("Serve expired"), + _("Attempts to serve old responses from cache with a TTL of 0 in the response without waiting for the actual resolution to finish.")); + o.rmempty = false; + o.default = o.enabled; + + // cache-size; + o = s.taboption("advanced", form.Value, "cache_size", _("Cache Size"), _("DNS domain result cache size")); + o.rempty = true; + + // cache-persist; + o = s.taboption("advanced", form.Flag, "cache_persist", _("Cache Persist"), _("Write cache to disk on exit and load on startup.")); + o.rmempty = false; + o.default = o.enabled; + + // cache-size; + o = s.taboption("advanced", form.Flag, "resolve_local_hostnames", _("Resolve Local Hostnames"), _("Resolve local hostnames by reading Dnsmasq lease file.")); + o.rmempty = false; + o.default = o.enabled; + + // Force AAAA SOA + o = s.taboption("advanced", form.Flag, "force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA.")); + o.rmempty = true; + o.default = o.disabled; + + // Force HTTPS SOA + o = s.taboption("advanced", form.Flag, "force_https_soa", _("Force HTTPS SOA"), _("Force HTTPS SOA.")); + o.rmempty = false; + o.default = o.enabled; + + // Ipset no speed. + o = s.taboption("advanced", form.Value, "ipset_no_speed", _("No Speed IPset Name"), + _("Ipset name, Add domain result to ipset when speed check fails.")); + o.rmempty = true; + o.datatype = "string"; + o.rempty = true; + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var ipset = value.split(",") + for (var i = 0; i < ipset.length; i++) { + if (!ipset[i].match(/^(#[4|6]:)?[a-zA-Z0-9\-_]+$/)) { + return _("ipset name format error, format: [#[4|6]:]ipsetname"); + } + } + + return true; + } + + // NFTset no speed. + o = s.taboption("advanced", form.Value, "nftset_no_speed", _("No Speed NFTset Name"), + _("Nftset name, Add domain result to nftset when speed check fails, format: [#[4|6]:[family#table#set]]")); + o.rmempty = true; + o.datatype = "string"; + o.rempty = true; + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var nftset = value.split(",") + for (var i = 0; i < nftset.length; i++) { + if (!nftset[i].match(/^#[4|6]:[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+$/)) { + return _("NFTset name format error, format: [#[4|6]:[family#table#set]]"); + } + } + + return true; + } + + // rr-ttl; + o = s.taboption("advanced", form.Value, "rr_ttl", _("Domain TTL"), _("TTL for all domain result.")); + o.rempty = true; + + // rr-ttl-min; + o = s.taboption("advanced", form.Value, "rr_ttl_min", _("Domain TTL Min"), + _("Minimum TTL for all domain result.")); + o.rempty = true; + o.placeholder = "600"; + o.default = 600; + o.optional = true; + + // rr-ttl-max; + o = s.taboption("advanced", form.Value, "rr_ttl_max", _("Domain TTL Max"), + _("Maximum TTL for all domain result.")); + o.rempty = true; + + // rr-ttl-reply-max; + o = s.taboption("advanced", form.Value, "rr_ttl_reply_max", _("Reply Domain TTL Max"), + _("Reply maximum TTL for all domain result.")); + o.rempty = true; + + // other args + o = s.taboption("advanced", form.Value, "server_flags", _("Additional Server Args"), + _("Additional server args, refer to the help description of the bind option.")) + o.default = "" + o.rempty = true + + // include config + download_files = uci.sections('smartdns', 'download-file'); + o = s.taboption("advanced", form.DynamicList, "conf_files", _("Include Config Files
/etc/smartdns/conf.d"), + _("Include other config files from /etc/smartdns/conf.d or custom path, can be downloaded from the download page.")); + for (var i = 0; i < download_files.length; i++) { + if (download_files[i].type == undefined) { + continue; + } + + if (download_files[i].type != 'config') { + continue + } + + o.value(download_files[i].name); + } + + /////////////////////////////////////// + // second dns server; + /////////////////////////////////////// + // Enable; + o = s.taboption("seconddns", form.Flag, "seconddns_enabled", _("Enable"), + _("Enable or disable second DNS server.")); + o.default = o.disabled; + o.rempty = true; + + // Port; + o = s.taboption("seconddns", form.Value, "seconddns_port", _("Local Port"), _("Smartdns local server port")); + o.placeholder = 6553; + o.default = 6553; + o.datatype = "port"; + o.rempty = false; + + // Enable TCP server; + o = s.taboption("seconddns", form.Flag, "seconddns_tcp_server", _("TCP Server"), _("Enable TCP DNS Server")); + o.rmempty = false; + o.default = o.enabled; + + // dns server group; + o = s.taboption("seconddns", form.Value, "seconddns_server_group", _("Server Group"), + _("Query DNS through specific dns server group, such as office, home.")); + o.rmempty = true; + o.placeholder = "default"; + o.datatype = "hostname"; + o.rempty = true; + + o = s.taboption("seconddns", form.Flag, "seconddns_no_speed_check", _("Skip Speed Check"), + _("Do not check speed.")); + o.rmempty = true; + o.default = o.disabled; + + // skip address rules; + o = s.taboption("seconddns", form.Flag, "seconddns_no_rule_addr", _("Skip Address Rules"), + _("Skip address rules.")); + o.rmempty = true; + o.default = o.disabled; + + // skip name server rules; + o = s.taboption("seconddns", form.Flag, "seconddns_no_rule_nameserver", _("Skip Nameserver Rule"), + _("Skip nameserver rules.")); + o.rmempty = true; + o.default = o.disabled; + + // skip ipset rules; + o = s.taboption("seconddns", form.Flag, "seconddns_no_rule_ipset", _("Skip Ipset Rule"), + _("Skip ipset rules.")); + o.rmempty = true; + o.default = o.disabled; + + // skip soa address rule; + o = s.taboption("seconddns", form.Flag, "seconddns_no_rule_soa", _("Skip SOA Address Rule"), + _("Skip SOA address rules.")); + o.rmempty = true; + o.default = o.disabled; + + o = s.taboption("seconddns", form.Flag, "seconddns_no_dualstack_selection", _("Skip Dualstack Selection"), + _("Skip Dualstack Selection.")); + o.rmempty = true; + o.default = o.disabled; + + // skip cache; + o = s.taboption("seconddns", form.Flag, "seconddns_no_cache", _("Skip Cache"), _("Skip Cache.")); + o.rmempty = true; + o.default = o.disabled; + + // Force AAAA SOA + o = s.taboption("seconddns", form.Flag, "seconddns_force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA.")); + o.rmempty = true; + o.default = o.disabled; + + o = s.taboption("seconddns", form.Value, "seconddns_ipset_name", _("IPset Name"), _("IPset name.")); + o.rmempty = true; + o.datatype = "string"; + o.rempty = true; + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var ipset = value.split(",") + for (var i = 0; i < ipset.length; i++) { + if (!ipset[i].match(/^(#[4|6]:)?[a-zA-Z0-9\-_]+$/)) { + return _("ipset name format error, format: [#[4|6]:]ipsetname"); + } + } + + return true; + } + + o = s.taboption("seconddns", form.Value, "seconddns_nftset_name", _("NFTset Name"), _("NFTset name, format: [#[4|6]:[family#table#set]]")); + o.rmempty = true; + o.datatype = "string"; + o.rempty = true; + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var nftset = value.split(",") + for (var i = 0; i < nftset.length; i++) { + if (!nftset[i].match(/^#[4|6]:[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+$/)) { + return _("NFTset name format error, format: [#[4|6]:[family#table#set]]"); + } + } + + return true; + } + + // other args + o = s.taboption("seconddns", form.Value, "seconddns_server_flags", _("Additional Server Args"), + _("Additional server args, refer to the help description of the bind option.")) + o.default = "" + o.rempty = true + + /////////////////////////////////////// + // DNS64 Settings + /////////////////////////////////////// + o = s.taboption("dns64", form.Value, "dns64", _("DNS64")); + o.placeholder = "64:ff9b::/96"; + o.datatype = "ip6addr"; + o.rempty = true; + + /////////////////////////////////////// + // download Files Settings + /////////////////////////////////////// + o = s.taboption("files", form.Flag, "enable_auto_update", _("Enable Auto Update"), _("Enable daily auto update.")); + o.rmempty = true; + o.default = o.disabled; + o.rempty = true; + + o = s.taboption("files", form.FileUpload, "upload_conf_file", _("Upload Config File"), + _("Upload smartdns config file to /etc/smartdns/conf.d")); + o.rmempty = true + o.datatype = "file" + o.rempty = true + o.root_directory = "/etc/smartdns/conf.d" + + o = s.taboption("files", form.FileUpload, "upload_list_file", _("Upload Domain List File"), + _("Upload domain list file to /etc/smartdns/domain-set")); + o.rmempty = true + o.datatype = "file" + o.rempty = true + o.root_directory = "/etc/smartdns/domain-set" + + o = s.taboption('files', form.DummyValue, "_update", _("Update Files")); + o.renderWidget = function () { + return E('button', { + 'class': 'btn cbi-button cbi-button-apply', + 'id': 'btn_update', + 'click': ui.createHandlerFn(this, function () { + return fs.exec('/etc/init.d/smartdns', ['updatefiles']) + .catch(function (e) { ui.addNotification(null, E('p', e.message), 'error') }); + }) + }, [_("Update")]); + } + + o = s.taboption('files', form.SectionValue, '__files__', form.GridSection, 'download-file', _('Download Files'), + _('List of files to download.')); + + ss = o.subsection; + + ss.addremove = true; + ss.anonymous = true; + ss.sortable = true; + + so = ss.option(form.Value, 'name', _('File Name'), _('File Name')); + so.rmempty = true; + so.datatype = 'file'; + + so = ss.option(form.Value, 'url', _('URL'), _('URL')); + so.rmempty = true; + so.datatype = 'string'; + so.validate = function (section_id, value) { + if (value == "") { + return true; + } + + if (!value.match(/^(http|https|ftp|sftp):\/\//)) { + return _("URL format error, format: http:// or https://"); + } + + return true; + } + + so = ss.option(form.ListValue, "type", _("type"), _("File Type")); + so.value("list", _("domain list (/etc/smartdns/domain-set)")); + so.value("config", _("smartdns config (/etc/smartdns/conf.d)")); + so.default = "list"; + so.rempty = false; + + so = ss.option(form.Value, 'desc', _('Description'), _('Description')); + so.rmempty = true; + so.datatype = 'string'; + + /////////////////////////////////////// + // Proxy server settings; + /////////////////////////////////////// + o = s.taboption("proxy", form.Value, "proxy_server", _("Proxy Server"), _("Proxy Server URL, format: [socks5|http]://user:pass@ip:port.")); + o.datatype = 'string'; + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + if (!value.match(/^(socks5|http):\/\//)) { + return _("Proxy server URL format error, format: [socks5|http]://user:pass@ip:port."); + } + + return true; + } + + /////////////////////////////////////// + // custom settings; + /////////////////////////////////////// + o = s.taboption("custom", form.TextValue, "custom_conf", + "", _("smartdns custom settings")); + o.rows = 20; + o.cfgvalue = function (section_id) { + return fs.trimmed('/etc/smartdns/custom.conf'); + }; + o.write = function (section_id, formvalue) { + return this.cfgvalue(section_id).then(function (value) { + if (value == formvalue) { + return + } + return fs.write('/etc/smartdns/custom.conf', formvalue.trim().replace(/\r\n/g, '\n') + '\n'); + }); + }; + + o = s.taboption("custom", form.Flag, "coredump", _("Generate Coredump"), + _("Generate Coredump file when smartdns crash, coredump file is located at /tmp/smartdns.xxx.core.")); + o.rmempty = true; + o.default = o.disabled; + + o = s.taboption("custom", form.Value, "log_size", _("Log Size")); + o.rmempty = true; + o.placeholder = "default"; + + o = s.taboption("custom", form.ListValue, "log_level", _("Log Level")); + o.rmempty = true; + o.placeholder = "default"; + o.value("", _("default")); + o.value("debug"); + o.value("info"); + o.value("notice"); + o.value("warn"); + o.value("error"); + o.value("fatal"); + o.value("off"); + + o = s.taboption("custom", form.Value, "log_num", _("Log Number")); + o.rmempty = true; + o.placeholder = "default"; + + o = s.taboption("custom", form.Value, "log_file", _("Log File")) + o.rmempty = true + o.placeholder = "/var/log/smartdns/smartdns.log" + + //////////////// + // Upstream servers; + //////////////// + s = m.section(form.GridSection, "server", _("Upstream Servers"), + _("Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS servers, " + + "including multiple foreign DNS servers.")); + s.anonymous = true; + s.addremove = true; + s.sortable = true; + + s.tab('general', _('General Settings')); + s.tab('advanced', _('Advanced Settings')); + + // enable flag; + o = s.taboption("general", form.Flag, "enabled", _("Enable")); + o.rmempty = false; + o.default = o.enabled; + o.editable = true; + + // name; + o = s.taboption("general", form.Value, "name", _("DNS Server Name")); + + // IP address; + o = s.taboption("general", form.Value, "ip", _("DNS Server ip")); + o.datatype = "or(ipaddr, string)"; + o.rmempty = false; + + // port; + o = s.taboption("general", form.Value, "port", _("DNS Server port")); + o.placeholder = "default"; + o.datatype = "port"; + o.rempty = true; + o.depends("type", "udp"); + o.depends("type", "tcp"); + o.depends("type", "tls"); + + // type; + o = s.taboption("general", form.ListValue, "type", _("DNS Server type")); + o.placeholder = "udp"; + o.value("udp", _("udp")); + o.value("tcp", _("tcp")); + o.value("tls", _("tls")); + o.value("https", _("https")); + o.default = "udp"; + o.rempty = false; + + // server group + o = s.taboption("general", form.Value, "server_group", _("DNS Server group")) + o.rmempty = true; + o.placeholder = "default"; + o.datatype = "hostname"; + o.rempty = true; + servers = uci.sections('smartdns', 'server'); + var groupnames = new Set(); + for (var i = 0; i < servers.length; i++) { + if (servers[i].server_group == undefined) { + continue; + } + groupnames.add(servers[i].server_group); + } + + for (const groupname of groupnames) { + o.value(groupname); + } + + // Advanced Options + o = s.taboption("advanced", form.Flag, "exclude_default_group", _("Exclude Default Group"), _("Exclude DNS Server from default group.")) + o.rmempty = true; + o.default = o.disabled; + o.editable = true; + o.modalonly = true; + + // blacklist_ip + o = s.taboption("advanced", form.Flag, "blacklist_ip", _("IP Blacklist Filtering"), + _("Filtering IP with blacklist")) + o.rmempty = true + o.default = o.disabled + o.modalonly = true; + + // TLS host verify + o = s.taboption("advanced", form.Value, "tls_host_verify", _("TLS Hostname Verify"), + _("Set TLS hostname to verify.")) + o.default = "" + o.datatype = "string" + o.rempty = true + o.modalonly = true; + o.depends("type", "tls") + o.depends("type", "https") + + // certificate verify + o = s.taboption("advanced", form.Flag, "no_check_certificate", _("No check certificate"), + _("Do not check certificate.")) + o.rmempty = true + o.default = o.disabled + o.modalonly = true; + o.depends("type", "tls") + o.depends("type", "https") + + // SNI host name + o = s.taboption("advanced", form.Value, "host_name", _("TLS SNI name"), + _("Sets the server name indication for query. '-' for disable SNI name.")) + o.default = "" + o.datatype = "hostname" + o.rempty = true + o.modalonly = true; + o.depends("type", "tls") + o.depends("type", "https") + + // http host + o = s.taboption("advanced", form.Value, "http_host", _("HTTP Host"), + _("Set the HTTP host used for the query. Use this parameter when the host of the URL address is an IP address.")) + o.default = "" + o.datatype = "hostname" + o.rempty = true + o.modalonly = true; + o.depends("type", "https") + + // SPKI pin + o = s.taboption("advanced", form.Value, "spki_pin", _("TLS SPKI Pinning"), + _("Used to verify the validity of the TLS server, The value is Base64 encoded SPKI fingerprint, " + + "leaving blank to indicate that the validity of TLS is not verified.")) + o.default = "" + o.datatype = "string" + o.rempty = true + o.modalonly = true; + o.depends("type", "tls") + o.depends("type", "https") + + // mark + o = s.taboption("advanced", form.Value, "set_mark", _("Marking Packets"), + _("Set mark on packets.")) + o.default = "" + o.rempty = true + o.datatype = "uinteger" + o.modalonly = true; + + // use proxy + o = s.taboption("advanced", form.Flag, "use_proxy", _("Use Proxy"), + _("Use proxy to connect to upstream DNS server.")) + o.default = o.disabled + o.modalonly = true; + o.optional = true; + o.rempty = true; + o.validate = function (section_id, value) { + var flag = this.formvalue(section_id); + if (flag == "0") { + return true; + } + + var proxy_server = uci.sections("smartdns", "smartdns")[0].proxy_server; + var server_type = this.section.formvalue(section_id, "type"); + if (proxy_server == "" || proxy_server == undefined) { + return _("Please set proxy server first."); + } + + if (server_type == "udp" && !proxy_server.match(/^(socks5):\/\//)) { + return _("Only socks5 proxy support udp server."); + } + + return true; + } + + // other args + o = s.taboption("advanced", form.Value, "addition_arg", _("Additional Server Args"), + _("Additional Args for upstream dns servers")) + o.default = "" + o.rempty = true + o.modalonly = true; + + //////////////// + // domain rules; + //////////////// + s = m.section(form.TypedSection, "domain-rule", _("Domain Rules"), _("Domain Rules Settings")); + s.anonymous = true; + s.nodescriptions = true; + + s.tab("forwarding", _('DNS Forwarding Setting')); + s.tab("block", _("DNS Block Setting")); + s.tab("domain-rule-list", _("Domain Rule List"), _("Set Specific domain rule list.")); + s.tab("domain-address", _("Domain Address"), _("Set Specific domain ip address.")); + s.tab("blackip-list", _("IP Blacklist"), _("Set Specific ip blacklist.")); + + /////////////////////////////////////// + // domain forwarding; + /////////////////////////////////////// + o = s.taboption("forwarding", form.Value, "server_group", _("Server Group"), _("DNS Server group belongs to, such as office, home.")) + o.rmempty = true + o.placeholder = "default" + o.datatype = "hostname" + o.rempty = true + for (const groupname of groupnames) { + o.value(groupname); + } + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var val = uci.sections('smartdns', 'server'); + for (var i = 0; i < val.length; i++) { + if (value == val[i].server_group) { + return true; + } + } + + return _('Server Group %s not exists').format(value); + + } + + o = s.taboption("forwarding", form.Flag, "no_speed_check", _("Skip Speed Check"), + _("Do not check speed.")); + o.rmempty = true; + o.default = o.disabled; + + o = s.taboption("forwarding", form.Flag, "force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA.")); + o.rmempty = true; + o.default = o.disabled; + + o = s.taboption("forwarding", form.Value, "ipset_name", _("IPset Name"), _("IPset name.")); + o.rmempty = true; + o.datatype = "string"; + o.rempty = true; + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var ipset = value.split(",") + for (var i = 0; i < ipset.length; i++) { + if (!ipset[i].match(/^(#[4|6]:)?[a-zA-Z0-9\-_]+$/)) { + return _("ipset name format error, format: [#[4|6]:]ipsetname"); + } + } + + return true; + } + + o = s.taboption("forwarding", form.Value, "nftset_name", _("NFTset Name"), _("NFTset name, format: [#[4|6]:[family#table#set]]")); + o.rmempty = true; + o.datatype = "string"; + o.rempty = true; + o.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var nftset = value.split(",") + for (var i = 0; i < nftset.length; i++) { + if (!nftset[i].match(/^#[4|6]:[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+$/)) { + return _("NFTset name format error, format: [#[4|6]:[family#table#set]]"); + } + } + + return true; + } + + // other args + o = s.taboption("forwarding", form.Value, "addition_flag", _("Additional Rule Flag"), + _("Additional Flags for rules, read help on domain-rule for more information.")) + o.default = "" + o.rempty = true + o.modalonly = true; + + o = s.taboption("forwarding", form.FileUpload, "forwarding_domain_set_file", _("Domain List File"), + _("Upload domain list file, or configure auto download from Download File Setting page.")); + o.rmempty = true + o.datatype = "file" + o.rempty = true + o.editable = true + o.root_directory = "/etc/smartdns/domain-set" + + o = s.taboption("forwarding", form.TextValue, "domain_forwarding_list", + _("Domain List"), _("Configure forwarding domain name list.")); + o.rows = 10; + o.cols = 64; + o.monospace = true; + o.cfgvalue = function (section_id) { + return fs.trimmed('/etc/smartdns/domain-forwarding.list').catch(function (e) { + return ""; + }); + }; + o.write = function (section_id, formvalue) { + return this.cfgvalue(section_id).then(function (value) { + if (value == formvalue) { + return + } + return fs.write('/etc/smartdns/domain-forwarding.list', formvalue.trim().replace(/\r\n/g, '\n') + '\n'); + }); + }; + + /////////////////////////////////////// + // domain block; + /////////////////////////////////////// + o = s.taboption("block", form.FileUpload, "block_domain_set_file", _("Domain List File"), _("Upload domain list file.")); + o.rmempty = true + o.datatype = "file" + o.rempty = true + o.editable = true + o.root_directory = "/etc/smartdns/domain-set" + + o = s.taboption("block", form.TextValue, "domain_block_list", + _("Domain List"), _("Configure block domain list.")); + o.rows = 10; + o.cols = 64; + o.cfgvalue = function (section_id) { + return fs.trimmed('/etc/smartdns/domain-block.list').catch(function (e) { + return ""; + }); + }; + o.write = function (section_id, formvalue) { + return this.cfgvalue(section_id).then(function (value) { + if (value == formvalue) { + return + } + return fs.write('/etc/smartdns/domain-block.list', formvalue.trim().replace(/\r\n/g, '\n') + '\n'); + }); + }; + + /////////////////////////////////////// + // domain rule list; + /////////////////////////////////////// + o = s.taboption('domain-rule-list', form.SectionValue, '__domain-rule-list__', form.GridSection, 'domain-rule-list', _('Domain Rule List'), + _('Configure domain rule list.')); + + ss = o.subsection; + + ss.addremove = true; + ss.anonymous = true; + ss.sortable = true; + + // enable flag; + so = ss.option(form.Flag, "enabled", _("Enable"), _("Enable")); + so.rmempty = false; + so.default = so.enabled; + so.editable = true; + + // name; + so = ss.option(form.Value, "name", _("Domain Rule Name"), _("Domain Rule Name")); + + so = ss.option(form.Value, "server_group", _("Server Group"), _("DNS Server group belongs to, such as office, home.")) + so.rmempty = true + so.placeholder = "default" + so.datatype = "hostname" + so.rempty = true + for (const groupname of groupnames) { + so.value(groupname); + } + so.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var val = uci.sections('smartdns', 'server'); + for (var i = 0; i < val.length; i++) { + if (value == val[i].server_group) { + return true; + } + } + + return _('Server Group %s not exists').format(value); + + } + + so = ss.option(form.FileUpload, "domain_list_file", _("Domain List File"), + _("Upload domain list file, or configure auto download from Download File Setting page.")); + so.rmempty = true + so.datatype = "file" + so.rempty = true + so.root_directory = "/etc/smartdns/domain-set" + + so = ss.option(form.ListValue, "block_domain_type", _("Block domain"), _("Block domain.")); + so.rmempty = true; + so.value("none", _("None")); + so.value("all", "IPv4/IPv6"); + so.value("ipv4", "IPv4"); + so.value("ipv6", "IPv6"); + so.modalonly = true; + + // Support DualStack ip selection; + so = ss.option(form.ListValue, "dualstack_ip_selection", _("Dual-stack IP Selection"), + _("Enable IP selection between IPV4 and IPV6")); + so.rmempty = true; + so.default = "default"; + so.modalonly = true; + so.value("", _("default")); + so.value("yes", _("Yes")); + so.value("no", _("No")); + + so = ss.option(form.Value, "speed_check_mode", _("Speed Check Mode"), _("Smartdns speed check mode.")); + so.rmempty = true; + so.placeholder = "default"; + so.modalonly = true; + so.value("", _("default")); + so.value("ping,tcp:80,tcp:443"); + so.value("ping,tcp:443,tcp:80"); + so.value("tcp:80,tcp:443,ping"); + so.value("tcp:443,tcp:80,ping"); + so.value("none", _("None")); + so.validate = function (section_id, value) { + if (value == "") { + return true; + } + + if (value == "none") { + return true; + } + + var check_mode = value.split(",") + for (var i = 0; i < check_mode.length; i++) { + if (check_mode[i] == "ping") { + continue; + } + + if (check_mode[i].indexOf("tcp:") == 0) { + var port = check_mode[i].split(":")[1]; + if (port == "") { + return _("TCP port is empty"); + } + + continue; + } + + return _("Speed check mode is invalid."); + } + + return true; + } + + so = ss.option(form.Flag, "force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA.")); + so.rmempty = true; + so.default = so.disabled; + so.modalonly = true; + + + so = ss.option(form.Value, "ipset_name", _("IPset Name"), _("IPset name.")); + so.rmempty = true; + so.datatype = "hostname"; + so.rempty = true; + so.modalonly = true; + + so = ss.option(form.Value, "nftset_name", _("NFTset Name"), _("NFTset name, format: [#[4|6]:[family#table#set]]")); + so.rmempty = true; + so.datatype = "string"; + so.rempty = true; + so.modalonly = true; + so.validate = function (section_id, value) { + if (value == "") { + return true; + } + + var nftset = value.split(",") + for (var i = 0; i < nftset.length; i++) { + if (!nftset[i].match(/#[4|6]:[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+#[a-zA-Z0-9\-_]+$/)) { + return _("NFTset name format error, format: [#[4|6]:[family#table#set]]"); + } + } + + return true; + } + + // other args + so = ss.option(form.Value, "addition_flag", _("Additional Rule Flag"), + _("Additional Flags for rules, read help on domain-rule for more information.")) + so.default = "" + so.rempty = true + so.modalonly = true; + + /////////////////////////////////////// + // IP Blacklist; + /////////////////////////////////////// + // blacklist; + o = s.taboption("blackip-list", form.TextValue, "blackip_ip_conf", + "", _("Configure IP blacklists that will be filtered from the results of specific DNS server.")); + o.rows = 20; + o.cfgvalue = function (section_id) { + return fs.trimmed('/etc/smartdns/blacklist-ip.conf'); + }; + o.write = function (section_id, formvalue) { + return this.cfgvalue(section_id).then(function (value) { + if (value == formvalue) { + return + } + return fs.write('/etc/smartdns/blacklist-ip.conf', formvalue.trim().replace(/\r\n/g, '\n') + '\n'); + }); + }; + + /////////////////////////////////////// + // domain address + /////////////////////////////////////// + o = s.taboption("domain-address", form.TextValue, "address_conf", + "", + _("Specify an IP address to return for any host in the given domains, Queries in the domains are never " + + "forwarded and always replied to with the specified IP address which may be IPv4 or IPv6.")); + o.rows = 20; + o.cfgvalue = function (section_id) { + return fs.trimmed('/etc/smartdns/address.conf'); + }; + o.write = function (section_id, formvalue) { + return this.cfgvalue(section_id).then(function (value) { + if (value == formvalue) { + return + } + return fs.write('/etc/smartdns/address.conf', formvalue.trim().replace(/\r\n/g, '\n') + '\n'); + }); + }; + + //////////////// + // Support + //////////////// + s = m.section(form.TypedSection, "smartdns", _("Technical Support"), + _("If you like this software, please buy me a cup of coffee.")); + s.anonymous = true; + + o = s.option(form.Button, "web"); + o.title = _("SmartDNS official website"); + o.inputtitle = _("open website"); + o.inputstyle = "apply"; + o.onclick = function () { + window.open("https://pymumu.github.io/smartdns", '_blank'); + }; + + o = s.option(form.Button, "report"); + o.title = _("Report bugs"); + o.inputtitle = _("Report bugs"); + o.inputstyle = "apply"; + o.onclick = function () { + window.open("https://github.com/pymumu/smartdns/issues", '_blank'); + }; + + o = s.option(form.Button, "Donate"); + o.title = _("Donate to smartdns"); + o.inputtitle = _("Donate"); + o.inputstyle = "apply"; + o.onclick = function () { + window.open("https://pymumu.github.io/smartdns/#donate", '_blank'); + }; + + o = s.option(form.DummyValue, "_restart", _("Restart Service")); + o.renderWidget = function () { + return E('button', { + 'class': 'btn cbi-button cbi-button-apply', + 'id': 'btn_restart', + 'click': ui.createHandlerFn(this, function () { + return fs.exec('/etc/init.d/smartdns', ['restart']) + .catch(function (e) { ui.addNotification(null, E('p', e.message), 'error') }); + }) + }, [_("Restart")]); + } + return m.render(); + } +}); diff --git a/luci-app-smartdns/po/ar/smartdns.po b/luci-app-smartdns/po/ar/smartdns.po new file mode 100644 index 0000000000..56c7dc71e6 --- /dev/null +++ b/luci-app-smartdns/po/ar/smartdns.po @@ -0,0 +1,897 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-07-16 16:41+0000\n" +"Last-Translator: Rex_sa \n" +"Language-Team: Arabic \n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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 5.7-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "إعدادات متقدمة" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "لا" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "خادم الوكيل" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "الاعدادات" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "تحديث" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/bg/smartdns.po b/luci-app-smartdns/po/bg/smartdns.po new file mode 100644 index 0000000000..8cf5fde380 --- /dev/null +++ b/luci-app-smartdns/po/bg/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-02-28 14:29+0000\n" +"Last-Translator: Boyan Alexiev \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\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 5.5-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Разширени настройки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Събиране на данни ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Включване" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Общи настройки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "НЕ СЕ ИЗПЪЛНЯВА" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "ИЗПЪЛНЕНИЕ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Настройки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL адрес" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "по подразбиране" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/bn_BD/smartdns.po b/luci-app-smartdns/po/bn_BD/smartdns.po new file mode 100644 index 0000000000..bff634b0e5 --- /dev/null +++ b/luci-app-smartdns/po/bn_BD/smartdns.po @@ -0,0 +1,892 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn_BD\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/ca/smartdns.po b/luci-app-smartdns/po/ca/smartdns.po new file mode 100644 index 0000000000..a69b1189d4 --- /dev/null +++ b/luci-app-smartdns/po/ca/smartdns.po @@ -0,0 +1,893 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/cs/smartdns.po b/luci-app-smartdns/po/cs/smartdns.po new file mode 100644 index 0000000000..ed106b5a4c --- /dev/null +++ b/luci-app-smartdns/po/cs/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-10-22 12:01+0000\n" +"Last-Translator: Ondřej Vajda \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\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 5.8.2-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Další argumenty pro upstream servery DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Pokročilá nastavení" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/da/smartdns.po b/luci-app-smartdns/po/da/smartdns.po new file mode 100644 index 0000000000..4578900c11 --- /dev/null +++ b/luci-app-smartdns/po/da/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-01-25 02:53+0000\n" +"Last-Translator: drax red \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\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 5.4-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Beskrivelse" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Aktiver" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Generelle indstillinger" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "KØRE IKKE" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "KØRE" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Indstillinger" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/de/smartdns.po b/luci-app-smartdns/po/de/smartdns.po new file mode 100644 index 0000000000..1e266665e8 --- /dev/null +++ b/luci-app-smartdns/po/de/smartdns.po @@ -0,0 +1,963 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-07-17 22:44+0000\n" +"Last-Translator: ssantos \n" +"Language-Team: German \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 5.7-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Zusätzliche Argumente für Upstream-DNS-Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Zusätzliche Flags für Regeln. Weitere Informationen finden Sie in der Hilfe " +"zu Domänenregeln." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Zusätzliches Regel-Flag" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Zusätzliche Server Parameter" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" +"Zusätzliche Server-Argumente, siehe die Hilfebeschreibung der Option bind." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Erweiterte Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Versuche, eine alte Antwort vom Cache mit TTL 0 zurückzugeben, ohne auf die " +"eigentliche Auflösung zu warten." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Dnsmasq automatisch setzen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "Setze automatisch als Upstream von dnsmasq when sich der Port ändert." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Bind-Gerät" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Bind-Gerätename" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Domain blockieren" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Domain blockieren." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Cache Speicher" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Zwischenspeichergröße" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Sammeln von Daten ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" +"Definition einer IP basierten Blockierliste, welche Ergebnisse eines " +"spezifischen DNS Servers filtert." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Block-Domänenliste konfigurieren." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Konfigurieren der Domänenregel-Liste." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Konfigurieren der Liste der Weiterleitungsdomänennamen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Benutzerdefinierte Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "DNS Block Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "DNS-Weiterleitungseinstellung" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "DNS Server Name" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "DNS-Servergruppe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "DNS Server zu dem die Gruppe gehört. Bsp.: Büro, Zu Hause." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "DNS-Server IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "DNS-Server-Port" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "DNS-Server Typ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "DNS Domain Ergebnisspeichergröße" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "DNS64 Server Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Beschreibung" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Dnsmasq weitergeleitet zu Smartdns Fehler" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Zertifikat nicht prüfen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Geschwindigkeit nicht testen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Domain Adresse" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Domänen Liste" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Domänen Liste Datei" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Domänen Regel Liste" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Domänen Regel Name" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Domänen Regeln" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Domänen Regeln Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "Domäne TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "Domäne TTL Max" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "Domäne TTL Min" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Vorabruf der Domäne" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Spenden" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "An smartdns spenden" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Download Dateien" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Download Datei Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Domänen Listen Dateien herunterladen für Domänen Regeln und " +"Konfigurationsdateien einschließen. Bitte die Seite nach dem Download neu " +"laden damit es wirksam wird." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Dual-Stack-IP-Auswahl" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Aktivieren" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Auto Update einschalten" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Aktiviere Wahl zwischen IPv4 und IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Aktivere IPv6 DNS-Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Aktiviere TCP DNS Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Tägliches auto update einschalten." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" +"Aktivieren Sie Domänen-Prefetch, um die Reaktionsgeschwindigkeit der Domäne " +"zu beschleunigen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "Aktivieren oder deaktivieren des zweiten DNS-Servers." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Aktivieren oder deaktivieren des Smartdns-Servers" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "DNS Server von der standard Gruppe ausschließen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "Standard Gruppe ausschließen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "Schnellste IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Schnellste Antwort" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Dateiname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Dateityp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "Filtern von IP mit negativ-Liste" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "erster Ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Erzwinge AAAA SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Erzwinge AAAA SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Erzwinge HTTPS SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Erzwinge HTTPS SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Generiere Coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Erzeugt eine Coredump-Datei, wenn smartdns abstürzt. Die Coredump-Datei " +"befindet sich unter /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Zugriff auf die LuCI-App smartdns gewähren" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "HTTP-Host" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "IP Negativ-Liste" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Filterung von IP-Blacklists" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "IPV6-Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "IPset Name" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "IPset Name." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" +"Wenn Ihnen diese Software gefällt, spendieren Sie mir bitte eine Tasse " +"Kaffee." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Config Dateien einschließen
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Andere Konfigurationsdateien aus /etc/smartdns/conf.d oder einem " +"benutzerdefinierten Pfad können von der Download-Seite heruntergeladen " +"werden." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Ipset-Name, Domänenergebnis zu ipset hinzufügen, wenn " +"Geschwindigkeitsprüfung fehlschlägt." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Liste der Dateien zum Herunterladen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Nur an den angegebenen Schnittstellen lauschen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Lokaler Port" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Protokolldatei" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Protokollierungslevel" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Protokollnummer" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Log Größe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Pakete Markieren" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "Maximale TTL für alle Ergebnisse der Domäne." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "Minimale TTL für alle Ergebnisse der Domäne." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "NFTset Name" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "NFTset-Namensformatfehler, Format: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "NFTset-Name, Format: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "LÄUFT NICHT" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "Name des Geräts, auf das gehört werden soll." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Nftset-Name, Hinzufügen des Domänenergebnisses zum Nftset, wenn die " +"Geschwindigkeitsprüfung fehlschlägt, Format: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Nein" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "Keine Geschwindigkeit IPset-Name" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "Keine Geschwindigkeit NFTset Name" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Kein Check der Zertifikate" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Keine" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Nur der Socks5 Proxy unterstützt einen udp-Server." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Bitte stelle zuerst den Proxy-Server ein." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Proxy-Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Proxy Server Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "Proxy-Server-URL, Format: [socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Proxyserver-URL-Formatfehler, Format: [socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" +"Abfrage von DNS über eine bestimmte DNS-Servergruppe, z. B. Büro, Zuhause." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "LÄUFT" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "Max TTL der Antwortdomäne" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Maximale Antwort-TTL für alle Domänen-Ergebnisse." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Bugs melden" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Lokale Hostnamen auflösen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "Lokale Hostnamen durch Lesen der Dnsmasq-Lease-Datei auflösen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Antwortmodus" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Neustart" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Dienst neu starten" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Einstellungen für den zweiten Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "Serve abgelaufen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Servergruppe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "Server-Gruppe %s nicht vorhanden" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Servername" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Spezifische Domänen-IP-Adresse einstellen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Liste der spezifischen Domänenregeln festlegen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Spezifische IP-Blacklist einstellen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "TLS-Hostname zur Überprüfung einstellen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Markierung der Pakete setzen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Legt den für die Abfrage verwendeten HTTP-Host fest. Verwenden Sie diesen " +"Parameter, wenn der Host der URL-Adresse eine IP-Adresse ist." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Legt die Angabe des Servernamens für die Abfrage fest. '-' für SNI-Name " +"deaktivieren." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Adressregeln überspringen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Cache überspringen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Cache überspringen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Dualstack-Auswahl überspringen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Dualstack-Auswahl überspringen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Ipset-Regel überspringen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Nameserver-Regel überspringen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "SOA-Adressregel überspringen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "SOA-Adressregeln überspringen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Geschwindigkeitsprüfung überspringen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Adressregeln überspringen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "ipset-Regeln überspringen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "Nameserver-Regeln überspringen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "SmartDNS-Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"SmartDNS ist ein lokaler Hochleistungs-DNS-Server, der die Suche nach der " +"schnellsten IP unterstützt, die Filterung von Werbung und die Vermeidung von " +"DNS-Poisoning ermöglicht." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "Offizielle Website von SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Lokaler Smartdns-Serverport" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Lokaler Smartdns-Serverport, smartdns wird automatisch als Haupt-DNS " +"eingestellt, wenn 53 der Port ist." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Smartdns-Antwortmodus, First Ping: Rückgabe der ersten Ping-IP, Schnellste " +"IP: Rückgabe der schnellsten IP, Schnellste Antwort: Rückgabe der " +"schnellsten DNS-Antwort." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Smartdns-Servername" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Smartdns-Geschwindigkeitsprüfungsmodus." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Geben Sie eine IP-Adresse an, die für einen beliebigen Host in den " +"angegebenen Domänen zurückgegeben werden soll. Abfragen in den Domänen " +"werden nie weitergeleitet und immer mit der angegebenen IP-Adresse " +"beantwortet, die IPv4 oder IPv6 sein kann." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Geschwindigkeitsüberprüfungsmodus" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "Geschwindigkeitsprüfmodus ist ungültig." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "TCP-Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "TCP-Port ist leer" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "Überprüfung des TLS-Hostnamens" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "TLS-SNI-Name" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "TLS-SPKI-Pinning" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "TTL für alle Domänenergebnisse." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Technische Unterstützung" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "URL-Formatfehler, Format: http:// oder https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Aktualisierung" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Update-Dateien" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Konfigurationsdatei Hochladen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Domainlisten-Datei Hochladen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Domainlisten-Datei zu /etc/smartdns/domain-set Hochladen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Domainlisten-Datei Hochladen oder Autiomatischen Download von " +"Dateieinstellungsseite Konfigurieren." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Domainlisten-Datei Hochladen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "Smartdns Konfigurationsdatei zu /etc/smartdns/conf.d hochladen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Upstream-Server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Upstream-Server, die die Protokolle UDP und TCP unterstützen. Bitte " +"konfigurieren Sie mehrere DNS-Server, einschließlich mehrerer ausländischer " +"DNS-Server." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Proxy verwenden" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "Proxy für die Verbindung zu einem Upstream DNS-Server verwenden." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"Wird verwendet, um die Gültigkeit des TLS-Servers zu überprüfen. Der Wert " +"ist ein Base64-kodierter SPKI-Fingerabdruck, leer lassen bedeutet, dass die " +"Gültigkeit von TLS nicht überprüft wird." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "Cache beim Beenden auf die Festplatte schreiben und beim Starten laden." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Ja" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "Standard" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "Domain-Liste (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "Fehler des ipset-Namensformats, format: [#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "Webseite öffnen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "Smartdns Konfiguration (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "Benutzerdefinierte SmartDNS-Einstellungen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "Typ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" + +#~ msgid "ip" +#~ msgstr "IP" + +#~ msgid "port" +#~ msgstr "Port" + +#~ msgid "" +#~ "DNS Server group belongs to, used with nameserver, such as office, home." +#~ msgstr "" +#~ "DNS-Server-Gruppe, zu jener der Nameserver gehört, z. B. Büro, Zuhause." + +#~ msgid "Dnsmasq Forwared To Smartdns Failure" +#~ msgstr "Fehler der Dnsmasq-Weiterleitung an Smartdns" + +#~ msgid "Sets the server name indication for query." +#~ msgstr "Legt die Anzeige des Servernamens für die Abfrage fest." + +#~ msgid "none" +#~ msgstr "kein" diff --git a/luci-app-smartdns/po/el/smartdns.po b/luci-app-smartdns/po/el/smartdns.po new file mode 100644 index 0000000000..72b0a8278e --- /dev/null +++ b/luci-app-smartdns/po/el/smartdns.po @@ -0,0 +1,893 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/es/smartdns.po b/luci-app-smartdns/po/es/smartdns.po new file mode 100644 index 0000000000..dd98849276 --- /dev/null +++ b/luci-app-smartdns/po/es/smartdns.po @@ -0,0 +1,1021 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2020-07-02 17:20-0300\n" +"PO-Revision-Date: 2024-09-05 22:11+0000\n" +"Last-Translator: brodrigueznu \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\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 5.8-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Args adicionales para servidores DNS aguas arriba" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Indicadores adicionales para las reglas. Para obtener más información, " +"consulte la ayuda sobre reglas de dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Indicador adicional de regla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Args adicionales del servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" +"Argumentos adicionales del servidor, consulte la descripción de ayuda de la " +"opción de vinculación." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Ajustes avanzados" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Intenta servir respuestas antiguas de la memoria caché con un TTL de 0 en la " +"respuesta sin esperar a que finalice la resolución real." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Establecer Dnsmasq automáticamente" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" +"Establecido automáticamente como conexión ascendente de dnsmasq cuando " +"cambia el puerto." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Dispositivo vinculado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Nombre de dispositivo vinculado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Bloquear dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Bloquear dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Caché persistente" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Tamaño del caché" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Recopilando los datos..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" +"Configure listas negras de IP que se filtrarán de los resultados de un " +"servidor DNS específico." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Configurar la lista de dominios de bloqueo." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Configurar la lista de reglas de dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Configure la lista de nombres de dominio de reenvío." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Configuraciones personalizadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "Configuración de bloqueo de DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "Configuración de reenvío de DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "Nombre del servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "Grupo de servidores DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "Grupo al que pertenece el servidor DNS p.e. oficina o casa." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "IP del servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "Puerto del servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "Tipo de servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "Tamaño del caché de resultados del dominio DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "Configuración del servidor DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Descripción" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Error de reenvío de Dnsmasq a Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "No verifique el certificado." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "No verifique la velocidad." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Dirección de dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Lista de dominios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Archivo de lista de dominios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Lista de reglas de dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Nombre de regla de dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Reglas de dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Configuración de reglas de dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "TTL del dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "TTL Máx. del dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "TTL Mín. del dominio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Prebúsqueda de dominios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Donar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "Donar a smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Descargar archivos" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Ajuste de descarga de archivos" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Descarga los archivos de lista de dominios para las reglas de dominio " +"incluyendo archivos de configuración. Por favor, refresca la página después " +"de la descarga para que surtan efecto." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Selección de IP de doble pila" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Activar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Activar actualización automática" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Activar la selección de IP entre IPv4 e IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Activar servidor DNS IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Activar el servidor DNS TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Activar la actualización automática diaria." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" +"Active la captación previa del dominio, acelere la velocidad de respuesta " +"del dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "Activar o desactivar el segundo servidor DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Activar o desactivar el servidor smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "Excluir el servidor DNS del grupo predeterminado." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "Excluir grupo predeterminado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "IP más rápida" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Respuesta más rápida" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Nombre del archivo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Tipo de archivo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "Filtrado de IP con lista negra" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "Primer ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Forzar AAAA SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Forzar AAAA SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Forzar HTTPS SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Forzar HTTPS SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Ajustes generales" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Generar Coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Genere el archivo Coredump cuando smartdns falla, el archivo coredump se " +"encuentra en /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Conceder acceso a la aplicación LuCI smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "Host HTTP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "Lista negra de IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Filtrado de la lista negra de IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "Servidor IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "Nombre del conjunto IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "Nombre del conjunto IP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "Si le gusta este software, cómpreme una taza de café." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Incluir archivos de configuración
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Incluye otros archivos de configuración desde /etc/smartdns/conf.d o una " +"ruta personalizada, se puede obtener desde la página de descarga." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Nombre de conjunto ip, agrega el resultado del dominio al conjunto ip cuando " +"falla la verificación de velocidad." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Lista de archivos a descargar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Escucha solo en las interfaces especificadas." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Puerto local" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Archivo de registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Nivel de registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Número de registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Tamaño de registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Etiquetado de paquetes" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "TTL máximo para todos los resultados de dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "TTL mínimo para todos los resultados de dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "Nombre del conjunto NFT" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" +"Error en formato de nombre del conjunto NFT, formato: " +"[#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "Nombre del conjunto NFT, formato: [#[4|6]:[familia#tabla#conjunto]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "NO EN EJECUCIÓN" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "Nombre del dispositivo en el que se escucha." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Nombre de Nftset, agregando el resultado del dominio al nftset cuando falla " +"la verificación de velocidad, formato: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "No" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "Nombre del conjunto IP sin velocidad" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "Nombre del conjunto NFT sin velocidad" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "No verificar el certificado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Ninguno" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Solo el proxy Socks5 admite el servidor UDP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Por favor, establezca primero el servidor proxy." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Servidor proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Ajustes de servidor proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"URL de servidor proxy, formato: [socks5|http]://usuario:contraseña@ip:puerto." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Error en formato de URL de servidor proxy, formato: " +"[socks5|http]://usuario:contraseña@ip:puerto." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" +"Consulta DNS a través de un grupo de servidores dns específico, como " +"oficina, hogar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "EN EJECUCIÓN" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "TTL máximo del dominio de respuesta" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Responda el TTL máximo para todos los resultados del dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Informar errores" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Resolver nombres de host locales" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" +"Resuelva los nombres de host locales leyendo el archivo de concesiones de " +"Dnsmasq." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Modo de respuesta" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Reiniciar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Reiniciar servicio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Segunda configuración del servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "Servir expirado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Grupo de servidores" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "El grupo de servidores %s no existe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Nombre del servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Establecer dirección IP de dominio específico." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Establecer lista de reglas para dominios específicos." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Establecer lista negra de IP específica." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "Establezca el nombre de host TLS para verificar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Establecer marca en los paquetes." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Establezca el host HTTP utilizado para la consulta. Use este parámetro " +"cuando el host de la dirección URL sea una dirección IP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Establece la indicación del nombre del servidor para la consulta. '-' para " +"desactivar el nombre SNI." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Ajustes" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Omitir reglas de dirección" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Omitir caché" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Omitir caché." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Omitir selección de pila doble" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Omitir selección de pila doble." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Omitir regla de Ipset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Omitir regla de servidor de nombres" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "Omitir regla de dirección SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "Omita las reglas de dirección SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Omitir comprobación de velocidad" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Omitir reglas de dirección." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "Omitir las reglas de ipset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "Omitir las reglas del servidor de nombres." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "Servidor SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"SmartDNS es un servidor DNS local de alto rendimiento, admite la búsqueda de " +"la IP más rápida, admite el filtrado de anuncios y evita el envenenamiento " +"de DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "Sitio web oficial de SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Puerto del servidor local Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Puerto del servidor local de Smartdns, se configurará automáticamente como " +"DNS principal cuando el puerto sea 53." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Modo de respuesta de SmartDNS, Primer Ping: devuelve la primera IP que " +"responde al ping, IP Más Rápida: devuelve la IP más rápida, Respuesta Más " +"Rápida: devuelve la respuesta DNS más rápida." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Nombre del servidor de Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Modo de verificación de velocidad de SmartDNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Especifique una dirección IP para devolver para cualquier host en los " +"dominios dados, las consultas en los dominios nunca se reenvían y siempre se " +"responden con la dirección IP especificada que puede ser IPv4 o IPv6." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Modo de Verificación de Velocidad" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "El modo de verificación de velocidad no es válido." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "Servidor TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "El puerto TCP está vacío" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "Verificar nombre de host TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "Nombre SNI de TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "TLS SPKI Anclado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "TTL para todos los resultados de dominio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Soporte técnico" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "Error en el formato de la URL, formato: http:// o https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Actualizar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Actualizar archivos" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Cargar archivo de configuración" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Cargar el archivo de lista de dominios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Cargue el archivo de lista de dominios en /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Cargue el archivo de la lista de dominios o configure la descarga automática " +"desde la página Configuración de descarga de archivos." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Cargar el archivo de lista de dominios." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "Cargue el archivo de configuración de smartdns en /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Servidores aguas arriba" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Servidores aguas arriba, soporte UDP, protocolo TCP. Configure varios " +"servidores DNS, incluidos varios servidores DNS externos." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Utilizar proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "Utilizar proxy para conectarse al servidor DNS ascendente." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"Se utiliza para verificar la validez del servidor TLS. El valor es la huella " +"digital SPKI codificada en Base64, y se deja en blanco para indicar que no " +"se verifica la validez de TLS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "Escriba la caché en el disco al salir y la cargue al arrancar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Si" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "por defecto" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "lista de dominios (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "Error de formato de nombre de ipset, formato: [#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "abrir sitio web" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "Configuración de smartdns (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "configuraciones personalizadas de smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "tipo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" + +#~ msgid "ip" +#~ msgstr "ip" + +#~ msgid "port" +#~ msgstr "puerto" + +#~ msgid "" +#~ "DNS Server group belongs to, used with nameserver, such as office, home." +#~ msgstr "" +#~ "El grupo del servidor DNS pertenece a, usado con el servidor de nombres, " +#~ "como la oficina, el hogar." + +#~ msgid "Dnsmasq Forwared To Smartdns Failure" +#~ msgstr "Fallo en el reenvío de dnsmasq a SmartDNS" + +#~ msgid "Sets the server name indication for query." +#~ msgstr "Establece la indicación del nombre del servidor para la consulta." + +#~ msgid "IPV4 53 Port Redirect Failure" +#~ msgstr "Error de reenvío de puerto IPv4 53" + +#~ msgid "IPV6 53 Port Redirect Failure" +#~ msgstr "Error de reenvío de puerto IPv6 53" + +#~ msgid "Redirect" +#~ msgstr "Redirigir" + +#~ msgid "Redirect 53 port to SmartDNS" +#~ msgstr "Redirigir el puerto 53 a SmartDNS" + +#~ msgid "Run as dnsmasq upstream server" +#~ msgstr "Ejecutar como servidor dnsmasq aguas arriba" + +#~ msgid "SmartDNS redirect mode" +#~ msgstr "Modo de redireccionamiento SmartDNS" + +#~ msgid "none" +#~ msgstr "ninguno" + +#~ msgid "DNS Server group belongs to," +#~ msgstr "El grupo del servidor DNS pertenece a," + +#~ msgid "" +#~ "SmartDNS is a local high-performance DNS server, supports finding fastest " +#~ "IP," +#~ msgstr "" +#~ "SmartDNS es un servidor DNS local de alto rendimiento, admite la búsqueda " +#~ "de IP más rápida," + +#~ msgid "" +#~ "Specify an IP address to return for any host in the given domains, " +#~ "Queries in the domains are never" +#~ msgstr "" +#~ "Especifique una dirección IP para devolver para cualquier host en los " +#~ "dominios dados, las consultas en los dominios nunca son" + +#~ msgid "" +#~ "Upstream Servers, support UDP, TCP protocol. Please configure multiple " +#~ "DNS servers," +#~ msgstr "" +#~ "Servidores aguas arriba, soporte UDP, protocolo TCP. Configura varios " +#~ "servidores DNS," + +#~ msgid "" +#~ "Used to verify the validity of the TLS server, The value is Base64 " +#~ "encoded SPKI fingerprint," +#~ msgstr "" +#~ "Se utiliza para verificar la validez del servidor TLS. El valor es la " +#~ "huella digital SPKI codificada en Base64," diff --git a/luci-app-smartdns/po/fi/smartdns.po b/luci-app-smartdns/po/fi/smartdns.po new file mode 100644 index 0000000000..0588888733 --- /dev/null +++ b/luci-app-smartdns/po/fi/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-08-31 15:13+0000\n" +"Last-Translator: Kieli Puoli \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\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 5.8-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Ota käyttöön" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "EI KÄYNNISSÄ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "KÄYNNISSÄ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Asetukset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/fr/smartdns.po b/luci-app-smartdns/po/fr/smartdns.po new file mode 100644 index 0000000000..26a4c74980 --- /dev/null +++ b/luci-app-smartdns/po/fr/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-02-01 22:49+0000\n" +"Last-Translator: ButterflyOfFire \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\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 5.4-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Paramètres avancés" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Description" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Activer" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Réglages généraux" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/ga/smartdns.po b/luci-app-smartdns/po/ga/smartdns.po new file mode 100644 index 0000000000..80839c90d1 --- /dev/null +++ b/luci-app-smartdns/po/ga/smartdns.po @@ -0,0 +1,944 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-09-06 19:05+0000\n" +"Last-Translator: Aindriú Mac Giolla Eoin \n" +"Language-Team: Irish \n" +"Language: ga\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(" +"n>6 && n<11) ? 3 : 4;\n" +"X-Generator: Weblate 5.8-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Args breise do fhreastalaithe dns suas sruth" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Bratacha breise le haghaidh rialacha, léigh cabhair ar riail fearainn le " +"haghaidh tuilleadh faisnéise." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Bratach Rialacha Breise" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Args Freastalaí Breise" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" +"Args freastalaí breise, féach don tuairisc chabhrach ar an rogha ceangail." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Socruithe chun cinn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Déanann iarracht sean-fhreagairtí ó taisce a sheirbheáil le TTL de 0 sa " +"fhreagra gan fanacht go gcríochnóidh an réiteach iarbhír." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Socraigh Dnsmasq go huathoibríoch" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" +"Socraigh go huathoibríoch mar thuas sruth de dnsmasq nuair a athraíonn " +"calafort." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Gléas Ceangail" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Ceangail Ainm Gléas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Bloc fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Bloc fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Leanann taisce" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Méid taisce" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Sonraí á mbailiú ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "Cumraigh liostaí dubha IP a scagfar ó thorthaí freastalaí DNS ar leith." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Cumraigh liosta fearainn bloc." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Cumraigh liosta riail fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Cumraigh liosta ainm fearainn ar aghaidh." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Socruithe Saincheaptha" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "Socrú Bloc DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "Socrú Seoladh DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "Ainm Freastalaí DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "Grúpa freastalaí DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "Baineann grúpa Freastalaí DNS le, mar shampla oifig, baile." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "IP freastalaí DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "Calafort freastalaí DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "Cineál freastalaí DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "Méid taisce torthaí fearainn DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "Socruithe Freastalaí DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Cur síos" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Dnsmasq ar aghaidh chuig Teip Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Ná seiceáil deimhniú." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Ná seiceáil luas." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Seoladh Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Liosta Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Comhad Liosta Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Liosta Rialacha Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Ainm Riail Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Rialacha Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Socruithe Rialacha Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "Fearainn TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "Fearainn TTL Max" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "Fearainn TTL Min" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Prefetch fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Deontas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "Bronnadh chuig smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Íoslódáil Comhaid" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Íoslódáil Socrú Comhaid" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Íoslódáil comhaid liosta fearainn le haghaidh riail fearainn agus cuir " +"comhaid chumraithe san áireamh, déan an leathanach a athnuachan tar éis an " +"íoslódáil chun dul i bhfeidhm." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Roghnú IP dé-chraiste" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Cumasaigh" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Cumasaigh Nuashonrú Auto" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Cumasaigh roghnú IP idir IPV4 agus IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Cumasaigh Freastalaí DNS IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Cumasaigh Freastalaí DNS TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Cumasaigh nuashonrú uathoibríoch laethúil." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" +"Cumasaigh réamhfhillteach fearainn, luasghéarú luas freagartha fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "Cumasaigh nó díchumasaigh an dara freastalaí DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Cumasaigh nó díchumasaigh freastalaí smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "Fág Freastalaí DNS as an ngrúpa réamhshocraithe." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "An Grúpa Réamhshocraithe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "IP is tapúla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Freagra is gasta" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Ainm an Chomhaid" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Cineál Comhad" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "Scagadh IP le liosta dubh" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "An Chéad Ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Fórsa AAAA SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Fórsa AAAA SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Fórsa HTTPS SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Fórsa HTTPS SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Socruithe Ginearálta" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Cruthaigh Coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Cruthaigh comhad Coredump nuair a thimpiste smartdns, tá comhad coredump " +"suite ag /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Rochtain a dheonú ar aip LuCi smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "Óstach HTTP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "Liosta Dubh IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Scagadh Liosta Dubh IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "Freastalaí IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "Ainm IPSet" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "Ainm IPSet." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "Más maith leat na bogearraí seo, ceannaigh cupán caife dom le do thoil." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Cuir Comhaid Cumraíochta san áireamh
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Cuir comhaid chumraithe eile san áireamh ó /etc/smartdns/conf.d nó cosán " +"saincheaptha, is féidir iad a íoslódáil ón leathanach íoslódála." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Ainm Ipset, Cuir toradh fearainn le ipset nuair a theipeann ar sheiceáil " +"luais." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Liosta na gcomhaid le híoslódáil." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Éist ach ar na comhéadain shonraithe." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Port Áitiúil" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Comhad Logáil" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Leibhéal Logála" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Uimhir Logála" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Méid Logála" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Pacáistí Marcála" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "TTL uasta do gach toradh fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "TTL íosta do gach toradh fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "Ainm NFTSet" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" +"Earráid formáid ainm NFTSet, formáid: [# [4|6]: [teaghlach #table #set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "Ainm NFTSet, formáid: [# [4|6]: [teaghlach #table #set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "NÍ RÚCHÁN" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "Ainm ainm na feiste éist air." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Ainm Nftset, Cuir toradh fearainn le nftset nuair a theipeann ar sheiceáil " +"luais, formáid: [# [4|6]: [teaghlach #table #set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Níl" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "Gan Ainm Luas IPSet" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "Gan Ainm Luas NFTSet" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Gan deimhniú seiceála" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Dada" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Ní thacaíonn ach socks5 seachfhreastalaí udp." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Socraigh seachfhreastalaí ar dtús." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Seachfhreastalaí" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Socruithe Freastalaí Proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"URL Freastalaí Seachfhreastalaí, formáid: [socks5|http] " +"http://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Earráid formáid URL seachfhreastalaí, formáid: [socks5|http]//user:pass " +"@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "Fiosraigh DNS trí ghrúpa freastalaí dns ar leith, mar oifig, baile." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "REATHA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "Freagra Réimse TTL Max" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Freagra ar TTL uasta do gach toradh fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Tuairisc fabhtanna" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Réiteach Óstaigh Áitiúla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "Réiteach óstainmneacha áitiúla trí chomhad léasa Dnsmasq a léamh." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Mód Freagartha" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Athosaigh" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Seirbhís atosaigh" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Socruithe Dara Freastalaí" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "Freastal in éag" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Grúpa Freastalaí" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "Níl Grúpa Freastalaí %s ann" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Ainm Freastalaí" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Socraigh seoladh ip fearainn sonrach." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Socraigh liosta riail fearainn sonrach." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Socraigh liosta dubh IP sonrach." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "Socraigh ainm óstach TLS le fíorú." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Socraigh marc ar phacéid." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Socraigh an t-óstach HTTP a úsáidtear don cheist. Úsáid an paraiméadar seo " +"nuair is seoladh IP é óstach an seoladh URL." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Socraíonn sé tásc ainm an fhreastalaí le haghaidh ceist. '-' le haghaidh " +"ainm SNI a dhíchumasú." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Socruithe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Rialacha Seoladh Scipeála" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Scipeáil Cache" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Scipeáil Cache." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Scipeáil Roghnú Dualstack" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Scipeáil Roghnú Dualstack." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Skip Ipset Riail" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Skipeáil Riail Seirbhíse Ainmneacha" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "Skip Riail Seoladh SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "Scipeáil rialacha seoltaí SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Scipeáil Seiceáil Luais" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Skipeáil rialacha seoltaí." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "Scipeáil rialacha ipset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "Scipeáil rialacha freastalaí ainmneacha." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "Freastalaí SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"Is freastalaí DNS ardfheidhmíochta áitiúil é SmartDNS, tacaíonn sé le teacht " +"ar an IP is tapúla, tacaíonn sé le scagadh fógraí, agus tacaíonn sé le " +"nimhiú DNS a sheachaint." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "Láithreán gréasáin oifigiúil SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Port freastalaí áitiúil Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Socrófar calafort freastalaí áitiúil Smartdns, smartdns go huathoibríoch mar " +"phríomhdns nuair a bhíonn an calafort 53." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Modh freagartha Smartdns, An Chéad Ping: cuir an chéad IP ping ar ais, IP is " +"tapúla: cuir an IP is tapúla ar ais, Freagra is tapa: cuir an freagra DNS is " +"gasta ar ais." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Ainm freastalaí Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Modh seiceála luais Smartdns." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Sonraigh seoladh IP le filleadh d'aon óstach sna fearainn ar leith, Ní " +"chuirtear ceisteanna sna fearainn ar aghaidh riamh agus freagraítear iad i " +"gcónaí leis an seoladh IP sonraithe a d'fhéadfadh a bheith IPv4 nó IPv6." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Mód Seiceála Luais" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "Tá modh seiceála luais neamhbhailí." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "Freastalaí TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "Tá calafort TCP folamh" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "Fíoraigh Óstainm TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "Ainm TLS SNI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "Pin TLS SPKI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "TTL le haghaidh gach toradh fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Tacaíocht Theicniúil" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "Earráid formáid URL, formáid: http://nó https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Nuashonraigh" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Nuashonrú Comhaid" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Uaslódáil Comhad Configúrtha" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Uaslódáil Comhad Liosta Fearainn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Uaslódáil comhad liosta fearainn chuig /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Uaslódáil comhad liosta fearainn, nó cumraigh íoslódáil uathoibríoch ó " +"leathanach Socrú Comhad Íoslódáil." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Uaslódáil comhad liosta fearainn." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "Uaslódáil comhad cumraíochta smartdns chuig /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Freastalaithe suas sruth" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Freastalaithe In aghaidh an tsrutha, tacú le UDP, prótacal TCP. Cumraigh " +"freastalaithe DNS iolracha, lena n-áirítear go leor freastalaithe DNS " +"coigríche." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Úsáid Proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" +"Úsáid seachfhreastalaí chun ceangal leis an bhfreastalaí DNS in aghaidh an " +"tsrutha." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"Úsáidtear chun bailíocht an fhreastalaí TLS a fhíorú, Is é an luach méarlorg " +"SPKI ionchódaithe Base64, ag fágáil bán chun a léiriú nach ndéantar " +"bailíocht TLS a fhíorú." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "Scríobh taisce chuig an diosca ar imeacht agus luchtaigh ar thosú." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Tá" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "réamhshocraithe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "liosta fearainn (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "earráid formáid ainm ipset, formáid: [# [4|6]:] ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "suíomh Gréasáin oscailte" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "cumraíocht smartdns (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "socruithe saincheaptha smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "cineál" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" diff --git a/luci-app-smartdns/po/he/smartdns.po b/luci-app-smartdns/po/he/smartdns.po new file mode 100644 index 0000000000..d1df3bc803 --- /dev/null +++ b/luci-app-smartdns/po/he/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-01-10 20:57+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" +"Language: he\n" +"MIME-Version: 1.0\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 5.4-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "תיאור" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/hi/smartdns.po b/luci-app-smartdns/po/hi/smartdns.po new file mode 100644 index 0000000000..f334845c91 --- /dev/null +++ b/luci-app-smartdns/po/hi/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-07-06 11:32+0000\n" +"Last-Translator: Sathvic \n" +"Language-Team: Hindi \n" +"Language: hi\n" +"MIME-Version: 1.0\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 5.7-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "उन्नत सेटिंग्स" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/hu/smartdns.po b/luci-app-smartdns/po/hu/smartdns.po new file mode 100644 index 0000000000..699ba2a91c --- /dev/null +++ b/luci-app-smartdns/po/hu/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-08-23 13:30+0000\n" +"Last-Translator: hmzs \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\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 5.7.1-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Haladó beállítások" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Általános beállítások" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Proxy-kiszolgáló" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/it/smartdns.po b/luci-app-smartdns/po/it/smartdns.po new file mode 100644 index 0000000000..be2efa0e98 --- /dev/null +++ b/luci-app-smartdns/po/it/smartdns.po @@ -0,0 +1,902 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-07-02 08:08+0000\n" +"Last-Translator: moreno \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\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 5.7-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Argomenti aggiuntivi per server DNS upstream" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Impostazioni aggiuntive per le regole, per più informazioni leggi la guida " +"sulle \"domain-rule\"." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "indicatore di Regola Aggiuntiva" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Ulteriori server Args" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" +"Ulteriori server args, fare riferimento alla descrizione dell'aiuto " +"dell'opzione bind." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Impostazioni avanzate" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Tenta di usare vecchie risposte dalla cache con un TTL di 0 nella risposta, " +"senza attendere che la risoluzione effettiva sia completata." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Caricamento dei dati in corso..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Descrizione" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Abilitare" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Impostazioni Generali" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "NON IN ESECUZIONE" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "No" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "IN ESECUZIONE" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Riavvia" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Impostazioni" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Si" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/ja/smartdns.po b/luci-app-smartdns/po/ja/smartdns.po new file mode 100644 index 0000000000..3f8fe56f2b --- /dev/null +++ b/luci-app-smartdns/po/ja/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-03-28 23:40+0000\n" +"Last-Translator: Ioroi Kouhei \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "アップストリームDNSサーバーの追加引数" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "詳細設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/ko/smartdns.po b/luci-app-smartdns/po/ko/smartdns.po new file mode 100644 index 0000000000..eca7fe268c --- /dev/null +++ b/luci-app-smartdns/po/ko/smartdns.po @@ -0,0 +1,893 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/lt/smartdns.po b/luci-app-smartdns/po/lt/smartdns.po new file mode 100644 index 0000000000..7df4715258 --- /dev/null +++ b/luci-app-smartdns/po/lt/smartdns.po @@ -0,0 +1,910 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-10-20 19:09+0000\n" +"Last-Translator: Džiugas Januševičius \n" +"Language-Team: Lithuanian \n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (" +"n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-rc\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Papildomi serverio argumentai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Pažangūs nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Automatiškai nustatyti „Dnsmasq“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Pririšti įrenginį" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Pririšti įrenginio pavadinimą" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Blokuoti domeną-sritį" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Blokuoti domeną-sritį." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Pastovi talpykla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Talpyklos dydis" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Renkami duomenys..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Pasirinktiniai nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "„DNS“ blokavimo nustatymas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "„DNS“ persiuntimo nustatymas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "„DNS“ serverio pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "„DNS“ serverio grupė" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "„DNS“ serverio grupė priklauso... (pvz: namams, biurui)." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "„DNS“ serverio IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "„DNS“ serverio prievadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "„DNS“ serverio tipas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "„DNS“ domeno-srities talpyklos vieta rezultate" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "„DNS64“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "„DNS64“ Serverio nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Aprašas/-ymas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Netikrinti sertifikato." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Netikrinti greičio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Domeno-Srities adresas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Domenų-Sričių sąrašas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Domenų-Sričių sąrašo failas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Domenų-Sričių taisyklių sąrašas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Domenų-Sričių taisyklės pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Domenų-Sričių taisyklės" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Domenų-Sričių taisyklių nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "Domeno-srities „TTL“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "Domeno-srities „TTL maks.“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "Domeno-srities „TTL min.“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Paremti/Paaukoti" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "Paremti „smartdns“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Atsisiųsti failus" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Atsisiųstų failų nustatymas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Įjungti/Įgalinti" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Įgalinti automatinį atnaujinimą" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Įjungti/Įgalinti IP parinktį tarp IPv4 ir IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Įjungti/Įgalinti IPv6 „DNS“ serverį" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Įjungti/Įgalinti „TCP“ „DNS“ serverį" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Įgalinti automatinius, kasdieninius atnaujinimus." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "Greičiausias IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Greičiausias atsakas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Failo pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Failo tipas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "Pirmasis ryšio atsakas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Priversti „AAAA SOA“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Priversti „AAAA SOA“." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Priversti „HTTPS SOA“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Priversti „HTTPS SOA“." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Bendri nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Duoti prieigą prie „LuCI app smartdns“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "„HTTP“ skleidėjas/vedėjas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "Draudžiamasis IP sąrašas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Draudžiamojo IP sąrašo filtravimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "IPV6 serveris" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "„IPset“ pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "„IPset“ pavadinimas." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" +"Jeigu jums patinka mano taikomoji programa, prašau nupirkti man kavos " +"puodelį." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Įtraukti konfigūracijos failus
„/etc/smartdns/conf.d“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Failų sąrašas, kuriuos atsisiųsite." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Laukti prisijungimo/jungties ryšio tik ant nurodytų sąsajų ir sietuvų." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Vietinis prievadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Žurnalo failas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Žurnalo lygis" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Žurnalo numeris" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Žurnalo dydis" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "„NFTset“ pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" +"„NFTset“ pavadinimo formato klaida, formatas: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "„NFTset“ pavadinimas, formatas: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "NEVEIKIA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "Įrenginio pavadinimas, ant kurio laukiamas prisijungimo/jungties ryšys." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Ne" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Be patikrinimo, sertifikatas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Joks (-ia/-ie)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Prašome pirma nustatyti įgaliotąjį serverį." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Įgaliotasis serveris" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Įgalioto serverio nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Įgalioto serverio „URL“ – saitas, formatas: " +"[socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Įgalioto serverio „URL“ – saito formato klaida, formatas: " +"[socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "VEIKIA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Atsakymo veiksena" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Paleisti iš naujo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Iš naujo paleisti tarnybą" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Antro serverio nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Serverio grupė" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "Serverio grupė/-s %s neegzistuoja" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Serverio pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Nustatyti savitą domeno-srities IP adresą." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Nustatyti savitą domeno-srities taisyklių sąrašą." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Nustatyti žymę ant paketų." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Praleisti talpyklą" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Praleisti talpyklą." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "„SmartDNS“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "„SmartDNS“ serveris" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "„SmartDNS“ oficialus tinklapis" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "„SmartDNS“ vietinis serverio prievadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "„SmartDNS“ serverio pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "„TCP“ serveris" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "„TCP“ prievadas yra tuščias" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "„TLS SNI“ pavadinimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "„TLS SPKI“ prisegimas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Techninė pagalba" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "„URL“ – Saitas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "„URL“ – Saito formato klaida, formatas: „http://“ arba „https://“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Atnaujinti" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Atnaujinimo failai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Įkelti konfigūracijos failą" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Įkelti domenų-sričių sąrašo failą" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Įkelti domenų-sričių sąrašo failą į „/etc/smartdns/domain-set“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Įkelti domenų-sričių sąrašo failą." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Išsiunčiamo srauto serveriai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Naudoti įgaliotąjį" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Taip" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "numatytas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "domeno-sričių sąrašas („/etc/smartdns/domain-set“)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "„https“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "atidaryti svetainę/tinklapį" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "„smartdns“ konfigūracija („/etc/smartdns/conf.d“)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "„smartdns“ pasirinktiniai nustatymai" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "„tcp“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "„tls“" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "tipas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "„udp“" + +#~ msgid "ip" +#~ msgstr "„ip“" + +#~ msgid "port" +#~ msgstr "prievadas" diff --git a/luci-app-smartdns/po/mr/smartdns.po b/luci-app-smartdns/po/mr/smartdns.po new file mode 100644 index 0000000000..7fd84f7ddb --- /dev/null +++ b/luci-app-smartdns/po/mr/smartdns.po @@ -0,0 +1,892 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/ms/smartdns.po b/luci-app-smartdns/po/ms/smartdns.po new file mode 100644 index 0000000000..603a279c50 --- /dev/null +++ b/luci-app-smartdns/po/ms/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-01-22 09:21+0000\n" +"Last-Translator: Abdul Muizz Bin Abdul Jalil \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Pemboleh" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Tidak" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Ya" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "mungkir" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/nb_NO/smartdns.po b/luci-app-smartdns/po/nb_NO/smartdns.po new file mode 100644 index 0000000000..b8ea49aa66 --- /dev/null +++ b/luci-app-smartdns/po/nb_NO/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-01-26 16:51+0000\n" +"Last-Translator: Allan Nordhøy \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\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 5.4-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Avanserte innstillinger" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Samler data …" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Skru på" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Generelle innstillinger" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "Kjører ikke" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "Kjører" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/nl/smartdns.po b/luci-app-smartdns/po/nl/smartdns.po new file mode 100644 index 0000000000..188ac7ff13 --- /dev/null +++ b/luci-app-smartdns/po/nl/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-04-18 14:03+0000\n" +"Last-Translator: Stephan \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\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 5.5-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Inschakelen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/pl/smartdns.po b/luci-app-smartdns/po/pl/smartdns.po new file mode 100644 index 0000000000..40ee1cf406 --- /dev/null +++ b/luci-app-smartdns/po/pl/smartdns.po @@ -0,0 +1,949 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-06-01 07:02+0000\n" +"Last-Translator: Matthaiks \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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 5.6-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Dodatkowe argumenty dla nadrzędnych serwerów DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Dodatkowe flagi dla reguł, przeczytaj pomoc dotyczącą reguły domeny, aby " +"uzyskać więcej informacji." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Dodatkowa flaga reguły" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Dodatkowe argumenty serwera" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" +"Dodatkowe argumenty serwera można znaleźć w opisie pomocy dotyczącym opcji " +"wiązania." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Ustawienia zaawansowane" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Próby zwrócenia starych odpowiedzi z pamięci podręcznej z TTL 0, nie " +"czekając na rzeczywiste rozwiązanie." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Automatycznie ustaw Dnsmasq" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" +"Automatycznie ustawiaj jako łącze nadrzędne Dnsmasq przy zmianie portu." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Powiąż urządzenie" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Nazwa połączonego urządzenia" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Zablokuj domenę" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Zablokuj domenę." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Trwała pamięć podręczna" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Rozmiar pamięci podręcznej" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Zbieranie danych..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" +"Skonfiguruj czarne listy IP, które będą filtrowane na podstawie wyników " +"konkretnego serwera DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Skonfiguruj listę blokowanych domen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Skonfiguruj listę reguł domeny." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Skonfiguruj listę nazw domen przekazywania." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Ustawienia niestandardowe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "Ustawienie blokowania DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "Ustawienie przekazywania DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "Nazwa serwera DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "Grupa serwerów DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "Grupa serwerów DNS należy do np. biura, domu." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "IP serwera DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "Port serwera DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "Typ serwera DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "Rozmiar pamięci podręcznej wyników domeny DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "Ustawienia serwera DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Opis" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Dnsmasq przekazany do błędu Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Nie sprawdzaj certyfikatu." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Nie sprawdzaj prędkości." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Adres domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Lista domen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Plik listy domen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Lista reguł domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Nazwa reguły domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Zasady domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Ustawienia reguł domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "TTL domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "Maksimum TTL domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "Minimum TTL domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Wstępne wyszukiwanie domeny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Wspomóż" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "Wspomóż smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Pobierz pliki" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Ustawienia pobierania plików" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Pobierz pliki listy domen dla reguły domeny i dołącz pliki konfiguracyjne. " +"Po pobraniu odśwież stronę, aby zastosować." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Wybór IP z podwójnym stosem" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Włącz" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Włącz automatyczną aktualizację" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Włącz wybór IP pomiędzy IPv4 a IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Włącz serwer DNS IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Włącz serwer DNS TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Włącz codzienną automatyczną aktualizację." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "Włącz wstępne wyszukiwanie domeny, zwiększ szybkość odpowiedzi domeny." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "Włącz lub wyłącz drugi serwer DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Włącz lub wyłącz serwer smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "Wyklucz serwer DNS z grupy domyślnej." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "Wyklucz grupę domyślną" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "Najszybszy IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Najszybsza reakcja" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Nazwa pliku" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Typ pliku" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "Filtrowanie adresów IP za pomocą czarnej listy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "Pierwszy ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Wymuś AAAA SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Wymuś AAAA SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Wymuś HTTPS SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Wymuś HTTPS SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Ustawienia główne" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Wygeneruj Coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Generuj plik Coredump w przypadku awarii smartdns. Plik coredump znajduje " +"się w /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Udziel dostępu do aplikacji LuCI smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "Host HTTP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "Czarna lista adresów IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Filtrowanie czarnej listy adresów IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "Serwer IPv6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "Nazwa IPset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "Nazwa IPset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "Jeśli podoba Ci się to oprogramowanie, postaw mi filiżankę kawy." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Dołącz pliki konfiguracyjne
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Dołącz inne pliki konfiguracyjne z pliku /etc/smartdns/conf.d lub ścieżki " +"niestandardowej, które można pobrać ze strony pobierania." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Nazwa IPset. Dodaj wynik domeny do ipset, gdy sprawdzenie szybkości nie " +"powiedzie się." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Lista plików do pobrania." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Nasłuchuj tylko na określonych interfejsach." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Port lokalny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Plik dziennika" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Poziom dziennika" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Liczba dziennika" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Rozmiar dziennika" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Oznakowanie pakietów" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "Maksymalny TTL dla wszystkich wyników domeny." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "Minimalny TTL dla wszystkich wyników domeny." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "Nazwa NFTset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "Błąd formatu nazwy NFTset, format: [#[4|6]:[rodzina#tablica#zestaw]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "Nazwa NFTset, format: [#[4|6]:[rodzina#tablica#zestaw]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "NIEURUCHOMIONE" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "Nazwa urządzenia nasłuchującego." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Nazwa Nftset. Dodaj wynik domeny do nftset, gdy sprawdzenie szybkości nie " +"powiedzie się, format: [#[4|6]:[rodzina#tablica#zestaw]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Nie" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "Nazwa IPset bez ograniczenia prędkości" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "Nazwa NFTset bez ograniczenia prędkości" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Bez sprawdzania certyfikatu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Brak" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Tylko proxy SOCKS5 obsługuje serwer UDP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Najpierw ustaw serwer proxy." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Serwer proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Ustawienia serwera proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Adres URL serwera proxy, format: [socks5|http]://użytkownik:hasło@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Błąd formatu adresu URL serwera proxy, format: [socks5|http]://użytkownik:" +"hasło@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" +"Odpytaj DNS za pośrednictwem określonej grupy serwerów DNS, takiej jak biuro " +"czy dom." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "URUCHOMIONE" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "Maksymalny TTL domeny odpowiedzi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Maksymalna odpowiedź TTL dla wszystkich wyników w domenie." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Zgłoś błędy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Rozwiąż lokalne nazwy hostów" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "Rozwiąż lokalne nazwy hostów, czytając plik dzierżawy Dnsmasq." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Tryb odpowiedzi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Restartuj" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Restartuj usługę" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Ustawienia drugiego serwera" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "Serwer wygasł" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Grupa serwerów" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "Grupa serwerów %s nie istnieje" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Nazwa serwera" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Ustaw konkretny adres IP domeny." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Ustaw określoną listę reguł domeny." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Ustaw określoną czarną listę IP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "Ustaw nazwę hosta TLS do sprawdzenia." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Ustaw znacznik na pakietach." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Ustaw host HTTP używany w zapytaniu. Użyj tego parametru, jeśli hostem " +"adresu URL jest adres IP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Ustawia wskazanie nazwy serwera dla zapytania. '-', aby wyłączyć nazwę SNI." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Ustawienia" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Pomiń reguły adresowe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Pomiń pamięć podręczną" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Pomiń pamięć podręczną." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Pomiń wybór podwójnego stosu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Pomiń wybór podwójnego stosu." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Pomiń regułę IPset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Pomiń regułę serwera nazw" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "Pomiń regułę adresu SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "Pomiń regułę adresu SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Pomiń sprawdzanie prędkości" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Pomiń reguły adresowe." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "Pomiń reguły ipset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "Pomiń reguły serwera nazw." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "Serwer SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"SmartDNS to lokalny serwer DNS o wysokiej wydajności, obsługuje wyszukiwanie " +"najszybszego adresu IP, obsługuje filtrowanie reklam i pomaga unikać " +"zatruwania DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "Oficjalna strona SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Port lokalnego serwera Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Port lokalnego serwera Smartdns, zostanie on automatycznie ustawiony jako " +"główny DNS, gdy port będzie miał numer 53." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Tryb odpowiedzi Smartdns. Pierwszy ping: zwróć adres IP pierwszego pingu. " +"Najszybszy adres IP: zwróć najszybszy adres IP. Najszybsza odpowiedź: zwróć " +"najszybszą odpowiedź DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Nazwa serwera Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Tryb sprawdzania prędkości Smartdns." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Określ adres IP, który ma zostać zwrócony dla dowolnego hosta w podanych " +"domenach. Zapytania w domenach nigdy nie są przekazywane dalej i zawsze " +"odpowiadają na nie podanym adresem IP, którym może być IPv4 lub IPv6." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Tryb sprawdzania prędkości" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "Tryb sprawdzania prędkości jest nieprawidłowy." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "Serwer TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "Port TCP jest pusty" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "Weryfikacja nazwy hosta TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "Nazwa SNI TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "Przypinanie SPKI TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "TTL dla wyniku w całej domenie." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Pomoc techniczna" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "Adres URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "Błąd formatu adresu URL, format: http:// lub https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Aktualizacja" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Aktualizuj pliki" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Prześlij plik konfiguracyjny" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Prześlij plik listy domen" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Prześlij plik listy domen do /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Prześlij plik listy domen lub skonfiguruj automatyczne pobieranie ze strony " +"ustawień pobierania plików." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Prześlij plik listy domen." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "Prześlij plik konfiguracyjny smartdns do /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Serwery nadrzędne" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Serwery nadrzędne obsługują protokoły UDP i TCP. Skonfiguruj wiele serwerów " +"DNS, w tym wiele zagranicznych serwerów DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Użyj serwera proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "Użyj serwera proxy, aby połączyć się z nadrzędnym serwerem DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"Służy do weryfikacji ważności serwera TLS. Wartość to odcisk palca SPKI " +"zakodowany w formacie Base64, pozostawiając puste pole, aby wskazać, że " +"ważność TLS nie została zweryfikowana." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" +"Zapisz pamięć podręczną na dysku przy wyjściu i załaduj przy uruchomieniu." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Tak" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "domyślna" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "lista domen (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "błąd formatu nazwy ipset, format: [#[4|6]:]nazwaipset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "otwórz witrynę internetową" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "konfiguracja smartdns (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "niestandardowe ustawienia smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "typ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" + +#~ msgid "ip" +#~ msgstr "ip" + +#~ msgid "port" +#~ msgstr "port" diff --git a/luci-app-smartdns/po/pt/smartdns.po b/luci-app-smartdns/po/pt/smartdns.po new file mode 100644 index 0000000000..63091ba51a --- /dev/null +++ b/luci-app-smartdns/po/pt/smartdns.po @@ -0,0 +1,945 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-07-20 20:10+0000\n" +"Last-Translator: ssantos \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\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 5.7-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Args adicionais para servidores dns upstream" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Sinalizadores adicionais para as regras, leia a ajuda na regra do domínio " +"para obter mais informações." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Sinalizador da regra adicional" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Args Adicionais Sobre o Servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" +"Args adicionais do servidor, consulte a descrição de ajuda da opção de " +"vinculação." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Configurações avançadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Tentativas de servir respostas antigas do cache com um TTL de 0 na resposta " +"sem esperar o término da resolução real." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Definir o Dnsmasq automaticamente" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" +"Definido automaticamente como upstream do dnsmasq quando a porta se alterar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Vincular dispositivo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Nome do dispositivo vinculado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Bloquear domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Bloquear domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Cache persistente" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Tamanho do Cache" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "A coletar dados ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" +"Configure as listas negras dos IP que serão filtradas a partir dos " +"resultados de um servidor DNS específico." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Configure a lista de bloqueio dos domínios." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Configurar a lista das regras do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Configurar a lista de encaminhamento dos nomes do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Configurações Personalizadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "Configuração do bloco do DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "Configuração de encaminhamento do DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "Nome do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "Grupo de servidores DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "O grupo a qual o servidor de DNS pertence, como escritório, casa." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "Endereço IP do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "Porta do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "Tipo do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "Tamanho do cache para o resultado do domínio DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "Configurações do servidor DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Descrição" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Falha no encaminhamento do Dnsmasq para o Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Não verifique o certificado." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Não verifique a velocidade." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Endereço do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Lista de domínios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Ficheiro da lista de domínios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Lista das regras de domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Nome da regra do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Regras do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Configurações das regras do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "TTL do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "TTL Max. do Domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "TTL Min. do Domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Pré-aquisição do Domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Doe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "Doar para o smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Descarregar os ficheiros" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Descarregar os ficheiros de configuração" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Descarregue os ficheiros da lista dos domínios para a regra do domínio e " +"inclua os ficheiros de configuração. Atualize a página após a descarga para " +"entrar em vigor." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Seleção IP com pilha dupla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Ativar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Ativar a atualização automática" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Ative a seleção do IP entre o IPV4 e o IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Ativar o Servidor IPV6 do DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Ative o TCP do servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Ativar a atualização diária automática." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" +"Ative a pré-aquisição do domínio, acelera a velocidade de resposta do " +"domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "Ative ou desative o segundo servidor DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Ative ou desative o servidor smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "Excluir o servidor DNS do grupo padrão." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "Excluir o grupo padrão" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "IP mais rápido" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Resposta mais rápida" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Nome do ficheiro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Tipo do ficheiro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "A filtrar o IP com uma lista negra" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "Primeiro ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Impor AAAA SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Impor AAAA SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Impor o HTTPS SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Impor o HTTPS SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Configurações gerais" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Gerar Coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Gere um ficheiro Coredump quando o smartdns falhar, o ficheiro coredump está " +"localizado em /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Conceder acesso à app smartdns do LuCI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "Host HTTP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "Lista negra de IPs" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Filtragem da Lista Negra dos IPs" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "Servidor IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "Nome do IPSet" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "Nome do IPset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "Caso goste deste software, por favor, me pague uma chávena de café." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Incluir os ficheiros de configuração
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Incluir os outros ficheiros de configuração de /etc/smartdns/conf.d ou o " +"caminho personalizado, pode ser descarregado da página de descargas." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Nome do IPset. Adicionar o resultado do domínio ao ipset quando a " +"verificação da velocidade falhar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Lista de ficheiros a descarregar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Ouça apenas nas interfaces indicadas." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Porta Local" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Ficheiro de registo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Nível do registo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Número do registo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Tamanho do registo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Marcação dos pacotes" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "TTL máximo para todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "TTL mínimo para todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "Nome do NFTset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "Erro no formato do nome NFTset, formato: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "Nome do NFTset, formato: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "NÃO ESTÁ EM EXECUÇÃO" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "O nome do nome do dispositivo da escuta." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Nome do nftset, adicionar o resultado do domínio ao nftset quando a " +"verificação de velocidade falhar, formato: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Não" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "Nome do conjunto de IP sem velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "Nome do conjunto NFT sem velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Não verifique o certificado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Nenhum" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Somente o proxy socks5 suporta o servidor udp." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Defina o servidor de proxy primeiro." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Servidor de proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Configurações do servidor de proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "URL do servidor de proxy, formato: [socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Erro no formato da URL do servidor de proxy, formato: " +"[socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" +"Consulta o DNS através de um grupo específico de servidores dns, como " +"office, casa." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "EM EXECUÇÃO" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "Responda ao domínio com TTL Max" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Responda com TTL máximo em todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Reportar problemas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Resolve os nomes dos host locais" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "Resolve os nomes dos hosts lendo o ficheiro de concessão do Dnsmasq." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Modo de resposta" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Reiniciar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Reiniciar o serviço" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Configurações do Segundo Servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "O servir expirou" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Grupo dos Servidores" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "O grupo de servidores %s não existe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Nome do Servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Defina um endereço IP específico para o domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Definir a lista das regras específicas do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Defina um IP específico para a lista negra." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "Defina o nome do host TLS para verificar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Definir uma marca nos pacotes." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Defina o host HTTP utilizado para a consulta. Use este parâmetro quando o " +"host da URL do endereço for um endereço IP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Define a indicação do nome do servidor para consulta. '-' para desativar o " +"nome SNI." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Configurações" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Ignora as Regras do Endereço" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Ignora a Cache" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Ignora a Cache." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Ignora a Seleção da Pilha Dupla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Ignora a Seleção da Pilha Dupla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Ignora a Regra Ipset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Ignora a Regra do Servidor de Nomes" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "Ignorar a Regra do Endereço SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "Ignorar a Regra do Endereço SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Ignorar a Verificação da Velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Ignora as Regras do Endereço." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "Ignore as regras do ipset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "Ignora a regra do servidor de nomes." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "Servidor SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"O SmartDNS é um servidor DNS local de alto desempenho, é compatível com a " +"localização rápida do IP, suporta filtragem de anúncios e previne o " +"envenenamento do DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "Site oficial do SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Porta do servidor local Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Porta do servidor local do Smartdns, o smartdns será automaticamente " +"definido como dns principal quando a porta for 53." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Modo de resposta Smartdns, First ping: retorna o primeiro ping do IP, " +"Fastest IP: retorna o IP mais rápido, Fastest Response: retorna o DNS com a " +"resposta mais rápida." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Nome do servidor Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Modo de verificação de velocidade Smartdns." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Especifique um endereço IP para retornar para qualquer host nos domínios " +"determinados, as consultas nos domínios nunca são encaminhadas e sempre " +"respondidas de forma especificada com o endereço IP que tanto pode ser IPv4 " +"ou IPv6." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Modo de aferição da velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "O modo de aferição da velocidade é inválido." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "Servidor TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "A porta TCP está vazia" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "Verificar o Nome do Host TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "Nome TLS SNI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "Fixação TLS SPKI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "O TTL para todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Suporte Técnico" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "Houve um erro no formato da URL, formato: http:// ou https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Atualizar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Atualizar os ficheiros" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Enviar o ficheiro de configuração" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Enviar o ficheiro da lista dos domínios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Enviar o ficheiro da lista dos domínios para /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Enviar o ficheiro da lista dos domínios ou configure a descarga automática " +"na página Descarregar o ficheiro de configuração." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Enviar o ficheiro da lista dos domínios." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "Enviar o ficheiro da configuração do smartdns para /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Servidores upstream" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Servidores upstream, suporte UDP, protocolo TCP. Configure os vários " +"servidores DNS, incluindo vários servidores DNS externos." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Usar proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "Use o proxy para se conectar ao servidor DNS upstream." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"Utilizado para verificar a validade do servidor TLS, o valor é a impressão " +"digital SPKI codificada com base64, deixando em branco para indicar que a " +"validade do TLS não será verificada." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "Grave o cache no disco ao encerrar e carregue-o na inicialização." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Sim" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "padrão" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "lista com os domínios (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "Houve um erro no formato do nome ipset, formato: [#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "abrir o website" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "Configuração do smartdns (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "configurações personalizadas do smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "tipo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" diff --git a/luci-app-smartdns/po/pt_BR/smartdns.po b/luci-app-smartdns/po/pt_BR/smartdns.po new file mode 100644 index 0000000000..bf1bb85c27 --- /dev/null +++ b/luci-app-smartdns/po/pt_BR/smartdns.po @@ -0,0 +1,982 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-06-24 23:51+0000\n" +"Last-Translator: Janderson Vieira Santos \n" +"Language-Team: Portuguese (Brazil) \n" +"Language: pt_BR\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 5.6-rc\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Args adicionais para servidores dns upstream" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Sinalizadores adicionais para as regras, leia a ajuda na regra do domínio " +"para obter mais informações." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Sinalizador da regra adicional" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Args Adicionais Sobre o Servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" +"Args adicionais do servidor, consulte a descrição de ajuda da opção de " +"vinculação." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Configurações avançadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Tentativas de servir respostas antigas do cache com um TTL de 0 na resposta " +"sem esperar o término da resolução real." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Definir o Dnsmasq automaticamente" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" +"Definido automaticamente como upstream do dnsmasq quando a porta se alterar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Vincular dispositivo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Nome do dispositivo vinculado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Bloquear domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Bloquear domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Cache persistente" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Tamanho do Cache" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Coletando dados ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" +"Configure as listas negras dos IP que serão filtradas a partir dos " +"resultados de um servidor DNS específico." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Configure a lista de bloqueio dos domínios." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Configurar a lista das regras do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Configurar a lista de encaminhamento dos nomes do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Configurações Personalizadas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "Configuração do bloco do DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "Configuração de encaminhamento do DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "Nome do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "Grupo de servidores DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "O grupo a qual o servidor de DNS pertence, como escritório, casa." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "Endereço IP do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "Porta do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "Tipo do Servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "Tamanho do cache para o resultado do domínio DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "Configurações do servidor DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Descrição" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Falha no encaminhamento do Dnsmasq para o Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Não verifique o certificado." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Não verifique a velocidade." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Endereço do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Lista de domínios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Arquivo da lista de domínios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Lista das regras de domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Nome da regra do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Regras do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Configurações das regras do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "TTL do domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "TTL Max. do Domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "TTL Min. do Domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Pré-aquisição do Domínio" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Doe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "Doar para o smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Baixar os arquivos" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Baixar os arquivos de configuração" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Faça o download dos arquivos da lista dos domínios para a regra do domínio e " +"inclua os arquivos de configuração. Atualize a página após o download para " +"entrar em vigor." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Seleção IP com pilha dupla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Habilitar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Ativar a atualização automática" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Ative a seleção do IP entre o IPV4 e o IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Ativar o Servidor IPV6 do DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Ative o TCP do servidor DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Ativar a atualização diária automática." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" +"Ative a pré-aquisição do domínio, acelera a velocidade de resposta do " +"domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "Ative ou desative o segundo servidor DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Ative ou desative o servidor smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "Excluir o servidor DNS do grupo padrão." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "Excluir o grupo padrão" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "IP mais rápido" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Resposta mais rápida" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Nome do arquivo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Tipo do arquivo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "Filtrando o IP com um alista negra" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "Primeiro ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Impor AAAA SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Impor AAAA SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Impor o HTTPS SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Impor o HTTPS SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Configurações gerais" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Gerar Coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Gere um arquivo Coredump quando o smartdns falhar, o arquivo coredump está " +"localizado em /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Conceda acesso ao LuCI app smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "Host HTTP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "Lista negra de IPs" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Filtragem da Lista Negra dos IPs" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "Servidor IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "Nome do conjunto de ips" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "Nome do conjunto IP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "Caso goste deste software, por favor, me pague uma xícara de café." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Incluir os arquivos de configuração
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Incluir os outros arquivos de configuração de /etc/smartdns/conf.d ou o " +"caminho personalizado, pode ser baixado da página de download." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Nome do conjunto de ips, adicionar o resultado do domínio ao ipset quando a " +"verificação da velocidade falhar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Lista dos arquivos para download." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Ouça apenas nas interfaces indicadas." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Porta Local" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Arquivo de registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Nível do registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Número do registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Tamanho do registro" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Marcação dos pacotes" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "TTL máximo para todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "TTL mínimo para todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "Nome do NFTset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "Erro no formato do nome NFTset, formato: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "Nome do NFTset, formato: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "NÃO ESTÁ EM EXECUÇÃO" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "O nome do nome do dispositivo da escuta." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Nome do nftset, adicionar o resultado do domínio ao nftset quando a " +"verificação de velocidade falhar, formato: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Não" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "Nome do conjunto de IP sem velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "Nome do conjunto NFT sem velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Não verifique o certificado" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Nenhum" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Somente o proxy socks5 suporta o servidor udp." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Defina o servidor de proxy primeiro." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Servidor de proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Configurações do servidor de proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "URL do servidor de proxy, formato: [socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Erro no formato da URL do servidor de proxy, formato: [socks5|http]://user:" +"pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" +"Consulta o DNS através de um grupo específico de servidores dns, como " +"office, casa." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "EM EXECUÇÃO" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "Responda ao domínio com TTL Max" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Responda com TTL máximo em todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Reportar problemas" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Resolve os nomes dos host locais" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "Resolve os nomes dos hosts lendo o arquivo de concessão do Dnsmasq." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Modo de resposta" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Reiniciar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Reiniciar o serviço" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Configurações do Segundo Servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "O servir expirou" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Grupo dos Servidores" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "O grupo de servidores %s não existe" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Nome do Servidor" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Defina um endereço IP específico para o domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Definir a lista das regras específicas do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Defina um IP específico para a lista negra." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "Defina o nome do host TLS para verificar." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Definir uma marca nos pacotes." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Defina o host HTTP utilizado para a consulta. Use este parâmetro quando o " +"host da URL do endereço for um endereço IP." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Define a indicação do nome do servidor para consulta. '-' para desativar o " +"nome SNI." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Configurações" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Ignora as Regras do Endereço" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Ignora a Cache" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Ignora a Cache." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Ignora a Seleção da Pilha Dupla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Ignora a Seleção da Pilha Dupla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Ignora a Regra Ipset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Ignora a Regra do Servidor de Nomes" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "Ignorar a Regra do Endereço SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "Ignorar a Regra do Endereço SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Ignorar a Verificação da Velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Ignora as Regras do Endereço." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "Ignore as regras do ipset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "Ignora a regra do servidor de nomes." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "Servidor SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"O SmartDNS é um servidor DNS local de alto desempenho, é compatível com a " +"localização rápida do IP, suporta filtragem de anúncios e previne o " +"envenenamento do DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "Site oficial do SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Porta do servidor local Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Porta do servidor local do Smartdns, o smartdns será automaticamente " +"definido como dns principal quando a porta for 53." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Modo de resposta Smartdns, First ping: retorna o primeiro ping do IP, " +"Fastest IP: retorna o IP mais rápido, Fastest Response: retorna o DNS com a " +"resposta mais rápida." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Nome do servidor Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Modo de verificação de velocidade Smartdns." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Especifique um endereço IP para retornar para qualquer host nos domínios " +"determinados, as consultas nos domínios nunca são encaminhadas e sempre " +"respondidas de forma especificada com o endereço IP que tanto pode ser IPv4 " +"ou IPv6." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Modo de aferição da velocidade" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "O modo de aferição da velocidade é inválido." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "Servidor TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "A porta TCP está vazia" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "Verificar o Nome do Host TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "Nome TLS SNI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "Fixação TLS SPKI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "O TTL para todos os resultados do domínio." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Suporte Técnico" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "Houve um erro no formato da URL, formato: http:// ou https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Atualizar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Atualizar os arquivos" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Enviar o arquivo de configuração" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Enviar o arquivo da lista dos domínios" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Enviar o arquivo da lista dos domínios para /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Enviar o arquivo da lista dos domínios ou configure o download automático na " +"página Baixar o arquivo de configuração." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Enviar o arquivo da lista dos domínios." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "Enviar o arquivo da configuração do smartdns para /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Servidores upstream" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Servidores upstream, suporte UDP, protocolo TCP. Configure os vários " +"servidores DNS, incluindo vários servidores DNS externos." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Usar proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "Use o proxy para se conectar ao servidor DNS upstream." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"Utilizado para verificar a validade do servidor TLS, o valor é a impressão " +"digital SPKI codificada com base64, deixando em branco para indicar que a " +"validade do TLS não será verificada." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "Grave o cache no disco ao encerrar e carregue-o na inicialização." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Sim" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "padrão" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "lista com os domínios (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "Houve um erro no formato do nome ipset, formato: [#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "abrir o website" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "Configuração do smartdns (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "configurações personalizadas do smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "tipo" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" + +#~ msgid "ip" +#~ msgstr "IP" + +#~ msgid "port" +#~ msgstr "porta" + +#~ msgid "" +#~ "DNS Server group belongs to, used with nameserver, such as office, home." +#~ msgstr "" +#~ "O grupo do Servidor DNS pertence a, usado em conjunto com o nameserver " +#~ "(nome do servidor), assim como em office, em casa." + +#~ msgid "Dnsmasq Forwared To Smartdns Failure" +#~ msgstr "Encaminhamento do Dnsmasq para Falha do Smartdns" + +#~ msgid "Sets the server name indication for query." +#~ msgstr "Define a indicação do nome do servidor para consulta." + +#~ msgid "IPV4 53 Port Redirect Failure" +#~ msgstr "Falha no Redirecionamento da Porta IPV4 53" + +#~ msgid "IPV6 53 Port Redirect Failure" +#~ msgstr "Falha no Redirecionamento da Porta IPV6 53" + +#~ msgid "Redirect" +#~ msgstr "Redirecione" + +#~ msgid "Redirect 53 port to SmartDNS" +#~ msgstr "Redirecionar a porta 53 para o SmartDNS" + +#~ msgid "Run as dnsmasq upstream server" +#~ msgstr "Executar como servidor dnsmasq upstream" + +#~ msgid "SmartDNS redirect mode" +#~ msgstr "SmartDNS, modo de redirecionamento" + +#~ msgid "none" +#~ msgstr "nenhum" diff --git a/luci-app-smartdns/po/ro/smartdns.po b/luci-app-smartdns/po/ro/smartdns.po new file mode 100644 index 0000000000..c2e742432f --- /dev/null +++ b/luci-app-smartdns/po/ro/smartdns.po @@ -0,0 +1,897 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-01-08 01:07+0000\n" +"Last-Translator: Simona Iacob \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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 5.4-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Args adiționali pentru serverele dns din upstream" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/ru/smartdns.po b/luci-app-smartdns/po/ru/smartdns.po new file mode 100644 index 0000000000..7db685ba8e --- /dev/null +++ b/luci-app-smartdns/po/ru/smartdns.po @@ -0,0 +1,951 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-10-16 19:05+0000\n" +"Last-Translator: Lorekin \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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 5.8-rc\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Дополнительные параметры для восходящих dns-серверов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Дополнительные флаги для правил, читайте справку по domain-rule для " +"получения дополнительной информации." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Флаг дополнительного правила" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Дополнительные параметры сервера" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "Дополнительные параметры сервера см. в справочном описании опции bind." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Расширеные настройки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Попытка обслужить старые ответы из кэша с TTL 0 в ответе, не дожидаясь " +"завершения фактического разрешения." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Автоматическая установка Dnsmasq" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" +"Автоматически устанавливается в качестве восходящего потока dnsmasq при " +"изменении порта." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Привязать устройство" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Имя связанного устройства" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Домен блокировки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Домен блокировки." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Фиксированный объем кэша" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Размер кэша" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Сбор данных ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" +"Настройте черные списки IP-адресов, которые будут отфильтровываться из " +"результатов работы определенного DNS-сервера." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Настройка списка доменов блокировки." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Настройте список правил домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Настройка списка имен доменов пересылки." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Пользовательские настройки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "Настройка блокировки DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "Настройка переадресации DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "Название сервера DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "Группа серверов DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "Группа DNS серверов принадлежит, например, офис, дом." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "Сервер DNS ip" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "Порт сервера DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "Тип сервера DNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "Размер кэша результатов DNS-домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "Настройки сервера DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Описание" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Сбой при пересылке Dnsmasq на Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Не проверять сертификат." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Не проверять скорость." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Адрес домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Список доменов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Файл списка доменов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Список правил домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Название правила домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Правила домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Настройки правил домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "TTL домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "Домен макс. TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "Домен мин. TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Предварительная загрузка домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Поддержка" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "Поддержать smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Загрузка файлов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Настройка загрузки файлов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Загрузите файлы списка доменов для domain-rule и включите файлы " +"конфигурации, пожалуйста, обновите страницу после загрузки, чтобы они " +"вступили в силу." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Выбор двухстекового IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Включить" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Включить автоматическое обновление" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "Включить выбор IP-адреса между IPV4 и IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "Включить DNS-сервер IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "Включить TCP DNS-сервер" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Включите ежедневное автоматическое обновление." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" +"Включите предварительную выборку домена, чтобы ускорить скорость отклика " +"домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "Включите или отключите второй DNS-сервер." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Включить или отключить сервер smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "Исключить DNS-сервер из группы по умолчанию." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "Исключить группу по умолчанию" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "Самый быстрый IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Самый быстрый ответ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Имя файла" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Тип файла" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "Фильтрация IP-адресов с помощью черного списка" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "Первый пинг" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "Принудительно AAAA SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "Принудительно использовать AAAA SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "Принудительно использовать HTTPS SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "Принудительно использовать HTTPS SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Основные Настройки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Создание Coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Генерирует файл Coredump при падении smartdns, файл coredump находится по " +"адресу /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "Предоставьте доступ к приложению LuCI smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "HTTP-хост" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "Черный список IP-адресов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "Фильтрация черных списков IP-адресов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "Сервер IPV6" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "Название IPset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "Название IPset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" +"Если вам понравится эта программа, пожалуйста, угостите меня чашкой кофе." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Включите файлы конфигурации
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Включите другие файлы конфигурации из /etc/smartdns/conf.d или по " +"собственному пути, их можно загрузить со страницы загрузки." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Название Ipset, Добавить результат домена в ipset при неудачной проверке " +"скорости." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "Список файлов для загрузки." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Слушать только указанные интерфейсы." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Локальный порт" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Файл журнала" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Уровень журнала" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Номер журнала" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Размер журнала" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Маркировка пакетов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "Максимальный TTL для всех результатов домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "Минимальный TTL для всех результатов домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "Название NFTset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "Ошибка формата названия NFTset, формат: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "Название NFTset, формат: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "НЕ ЗАПУЩЕН" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "Имя устройства, на котором осуществляется прослушивание." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Название Nftset, Добавить результат домена в nftset при неудачной проверке " +"скорости, формат: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Нет" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "Имя IP-сети без ограничения скорости" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "Название NFTset без ограничения скорости" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Отсутствие проверки сертификата" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Отсутствует" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Только socks5 proxy поддерживает udp-сервер." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Пожалуйста, сначала установите прокси-сервер." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Прокси-сервер" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Настройки прокси-сервера" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "URL-адрес прокси-сервера, формат: [socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Ошибка формата URL-адреса прокси-сервера, формат: [socks5|http]://user:" +"pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" +"Запрос DNS через определенную группу dns-серверов, например, офис, дом." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "ЗАПУЩЕНО" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "Максимальный TTL ответа домена" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Максимальный TTL ответа для всех результатов домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Сообщить об ошибках" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Разрешение локальных имен хостов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "Разрешение локальных имен хостов путем чтения файла аренды Dnsmasq." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Режим ответа" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Перезапустить" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Перезапуск службы" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "Настройки второго сервера" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "Истекший сервис" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Группа серверов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "Группа серверов %s не существует" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Имя сервера" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Установите определенный ip-адрес домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Установите список правил конкретного домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Установить конкретный черный список ip." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "Задайте имя хоста TLS для проверки." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Установите метку на пакетах." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Задайте хост HTTP, используемый для запроса. Используйте этот параметр, если " +"хост адреса URL является IP-адресом." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Устанавливает указание имени сервера для запроса. '-' для отключения имени " +"SNI." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Настройки" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Правила пропуска адресов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Пропустить кэш" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Пропустить кэш." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Пропустить выбор двойного стека" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Пропустить выбор двойного стека." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Пропустить правило Ipset" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Правило пропуска сервера имен" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "Правило пропуска адреса SOA" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "Правила пропуска адреса SOA." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Пропустить проверку скорости" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Пропустить правила адресации." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "Пропустить правила ipset." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "Пропустить правила сервера имен." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "Сервер SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"SmartDNS - это локальный высокопроизводительный DNS-сервер, поддерживающий " +"поиск самого быстрого IP-адреса, поддерживающий фильтрацию рекламы и " +"предотвращающий отравление DNS." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "Официальный сайт SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Порт локального сервера Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Порт локального сервера Smartdns, smartdns будет автоматически установлен в " +"качестве основного dns, если порт равен 53." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Режим ответа Smartdns, First Ping: возврат первого IP-адреса для пинга, " +"Fastest IP: возврат самого быстрого IP-адреса, Fastest Response: возврат " +"самого быстрого DNS-ответа." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Имя сервера Smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Режим проверки скорости Smartdns." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Укажите IP-адрес, который будет возвращаться для любого узла в указанных " +"доменах. Запросы в доменах никогда не пересылаются и всегда отвечают на " +"указанный IP-адрес, который может быть IPv4 или IPv6." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Режим проверки скорости" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "Режим проверки скорости недействителен." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "Сервер TCP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "TCP-порт пуст" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "Проверка имени хоста TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "Имя SNI TLS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "Закрепление TLS SPKI" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "TTL для всех результатов работы домена." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Техническая поддержка" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "Ошибка формата URL, формат: http:// или https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Обновление" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Обновление файлов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Загрузка файла конфигурации" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Загрузка файла со списком доменов" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Загрузить файл со списком доменов в /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Загрузите файл со списком доменов или настройте автоматическую загрузку на " +"странице настройки загрузки файлов." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Загрузить файл со списком доменов." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "Загрузить файл конфигурации smartdns в /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Восходящие сервера" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Восходящие сервера, поддерживают протокол UDP, TCP. Пожалуйста, настройте " +"несколько DNS-серверов, включая несколько зарубежных DNS-серверов." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Использовать прокси-сервер" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" +"Использовать прокси-сервер для подключения к DNS-серверу верхнего уровня." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"Используется для проверки валидности TLS-сервера. Значение представляет " +"собой закодированный в Base64 отпечаток SPKI, если оставить пустое значение, " +"то валидность TLS не проверяется." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "Запись кэша на диск при выходе и загрузка из кэша при запуске." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Да" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "по умолчанию" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "список доменов (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "Ошибка формата названия ipset, формат: [#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "открытый сайт" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "конфигурация smartdns (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "пользовательские настройки smartdns" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "тип" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" + +#~ msgid "ip" +#~ msgstr "ip" + +#~ msgid "port" +#~ msgstr "порт" diff --git a/luci-app-smartdns/po/sk/smartdns.po b/luci-app-smartdns/po/sk/smartdns.po new file mode 100644 index 0000000000..fb079da701 --- /dev/null +++ b/luci-app-smartdns/po/sk/smartdns.po @@ -0,0 +1,893 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/sv/smartdns.po b/luci-app-smartdns/po/sv/smartdns.po new file mode 100644 index 0000000000..e859524f2e --- /dev/null +++ b/luci-app-smartdns/po/sv/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-10-17 17:11+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\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 5.8-rc\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Avancerade inställningar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Blockera domän" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Blockera domän." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Cache-storlek" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Samlar in data ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Anpassade inställningar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Beskrivning" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Domänens adress" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Domän-lista" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Domän-regler" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "Domän-TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Donera" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Hämta filer" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Aktivera" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "Snabbast svar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Filnamn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Filtyp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "Första ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Generella inställningar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "HTTP-värd" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "IPV6-server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Lokal port" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Logg-fil" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Logg-nivå" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Logg-nummer" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Logg-storlek" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "KÖRS INTE" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Nej" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Proxy-server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "KÖRS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Rapportera buggar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Svarsläge" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Starta om" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Starta om tjänsten" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Server-namn" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Inställningar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "SmartDNS-server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "TCP-server" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Teknisk support" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Uppdatera" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Uppdatera filer" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Uppströmsservrar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Använd proxy" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Ja" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "standard" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "öppna hemsida" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "typ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" diff --git a/luci-app-smartdns/po/templates/smartdns.pot b/luci-app-smartdns/po/templates/smartdns.pot new file mode 100644 index 0000000000..e8bfd42ac8 --- /dev/null +++ b/luci-app-smartdns/po/templates/smartdns.pot @@ -0,0 +1,885 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/tr/smartdns.po b/luci-app-smartdns/po/tr/smartdns.po new file mode 100644 index 0000000000..c24ef2b1b1 --- /dev/null +++ b/luci-app-smartdns/po/tr/smartdns.po @@ -0,0 +1,938 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-03-31 19:54+0000\n" +"Last-Translator: Oğuz Han \n" +"Language-Team: Turkish \n" +"Language: tr\n" +"MIME-Version: 1.0\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 5.5-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Yukarı akış dns sunucuları için ek komutlar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" +"Kurallar için Ek Bayraklar, daha fazla bilgi için domain-rule hakkındaki " +"yardımı okuyun." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "Ek Kural Bayrağı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "Ek Sunucu Komutları" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "Ek sunucu komutları için bind seçeneğinin yardım açıklamasına bakın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Gelişmiş Ayarlar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" +"Gerçek çözünürlüğün bitmesini beklemeden yanıtta TTL değeri 0 olan " +"önbellekten eski yanıtları sunmaya çalışır." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "Dnsmasq'ı Otomatik Olarak Ayarla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" +"Port değiştiğinde otomatik olarak dnsmasq'ın yukarı akışı olarak ayarlanır." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "Cihazı Bağla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "Cihaz Adı Bağla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "Etki alanını engelle" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "Etki alanını engelle." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "Önbellek Kalıcılığı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "Önbellek Boyutu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "Veri toplama ..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" +"Belirli DNS sunucusunun sonuçlarından filtrelenecek IP kara listelerini " +"yapılandırın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "Engellenen etki alanı listesini yapılandırın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "Alan adı kural listesini yapılandırın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "Yönlendirme alan adı listesini yapılandırın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "Özel Ayarlar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "DNS Engelleme Ayarı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "DNS Yönlendirme Ayarı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "DNS Sunucu Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "DNS Sunucu grubu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "DNS Sunucusu grubunun ait olduğu yer, örneğin ofis, ev." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "DNS Sunucusu ip" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "DNS Sunucusu bağlantı noktası" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "DNS Sunucu türü" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "DNS alan adı sonuç önbellek boyutu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "DNS64 Sunucu Ayarları" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "Açıklama" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "Dnsmasq Smartdns'e Yönlendirildi Hatası" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "Sertifikayı kontrol etmeyin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "Hızı kontrol etmeyin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "Alan Adı Adresi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "Alan Adı Listesi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "Alan Adı Liste Dosyası" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "Alan Adı Kural Listesi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "Etki Alanı Kural Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "Alan Adı Kuralları" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "Alan Adı Kuralları Ayarları" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "Alan Adı TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "Alan Adı TTL Maks" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "Alan Adı TTL Min" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "Alan adı ön getirme" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "Bağış" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "smartdns'e bağış yapın" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "Dosyaları İndir" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "Dosyaları İndirme Ayarı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"Alan adı kuralı için alan adı listesi dosyalarını indirin ve yapılandırma " +"dosyalarını ekleyin, lütfen etkili olması için indirdikten sonra sayfayı " +"yenileyin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "Çift yığınlı IP Seçimi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Etkinleştir" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "Otomatik Güncellemeyi Etkinleştir" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "IPV4 ve IPV6 arasında IP seçimini etkinleştirin" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "IPV6 DNS Sunucusunu Etkinleştir" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "TCP DNS Sunucusunu Etkinleştir" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "Günlük otomatik güncellemeyi etkinleştirin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "Etki alanı ön getirmeyi etkinleştirin, etki alanı yanıt hızını artırın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "İkinci DNS sunucusunu etkinleştirin veya devre dışı bırakın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "Smartdns sunucusunu etkinleştirme veya devre dışı bırakma" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "DNS Sunucusunu varsayılan gruptan hariç tutun." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "Varsayılan Grubu Hariç Tut" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "En Hızlı IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "En Hızlı Tepki" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "Dosya Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "Dosya Türü" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "Kara liste ile IP filtreleme" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "İlk Ping" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "AAAA SOA'yı zorla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "AAAA SOA'yı zorla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "HTTPS SOA'yı Zorla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "HTTPS SOA'yı zorlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "Genel Ayarlar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "Coredump Oluştur" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"Smartdns çöktüğünde Coredump dosyası oluşturun, coredump dosyası /tmp/" +"smartdns.xxx.core adresinde bulunur." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "LuCI uygulaması smartdns'e erişim izni verin" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "HTTP Ana Bilgisayarı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "IP Kara Listesi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "IP Kara Liste Filtreleme" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "IPV6 Sunucu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "IPset Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "IPset adı." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" +"Eğer bu yazılımı beğendiyseniz, lütfen bana bir fincan kahve ısmarlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "Yapılandırma Dosyalarını Dahil Et
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"Diğer yapılandırma dosyalarını /etc/smartdns/conf.d veya özel yoldan " +"ekleyin, indirme sayfasından indirilebilir." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" +"Ipset adı, Hız kontrolü başarısız olduğunda etki alanı sonucunu ipset'e " +"ekleyin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "İndirilecek dosyaların listesi." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "Yalnızca belirtilen arayüzleri dinleyin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "Yerel Bağlantı Noktası" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "Günlük Dosyası" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "Günlük Seviyesi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "Günlük Numarası" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "Günlük Boyutu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "Paketlerin İşaretlenmesi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "Tüm alan adı sonuçları için maksimum TTL." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "Tüm alan adı sonuçları için minimum TTL." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "NFTset Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "NFTset adı biçim hatası, biçim: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "NFTset adı, biçim: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "ÇALIŞMIYOR" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "Dinleme yapılan cihazın adı." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"Nftset adı, Hız kontrolü başarısız olduğunda etki alanı sonucunu nftset'e " +"ekleyin, biçim: [#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "Hayır" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "No Speed IPset Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "No Speed NFTset Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "Kontrol sertifikası yok" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "Hiçbiri" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "Yalnızca socks5 proxy udp sunucusunu destekler." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "Lütfen önce proxy sunucusunu ayarlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "Proxy Sunucusu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "Proxy Sunucu Ayarları" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "Proxy Sunucu URL'si, biçim: [socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" +"Proxy sunucu URL biçimi hatası, biçim: [socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "Ofis, ev gibi belirli dns sunucu grubu üzerinden DNS sorgulama." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "ÇALIŞIYOR" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "Yanıt Etki Alanı TTL Maks" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "Tüm etki alanı sonucu için maksimum TTL'yi yanıtlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "Hataları bildir" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "Yerel Ana Bilgisayar Adlarını Çözümleme" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "Dnsmasq kira dosyasını okuyarak yerel ana bilgisayar adlarını çözün." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "Tepki Modu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "Yeniden Başlat" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "Servisi Yeniden Başlat" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "İkinci Sunucu Ayarları" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "Hizmet süresi doldu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "Sunucu Grubu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "Sunucu Grubu %s mevcut değil" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "Sunucu Adı" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "Belirli alan ip adresini ayarlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "Belirli etki alanı kural listesi ayarlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "Belirli ip kara listesini ayarlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "Doğrulamak için TLS ana bilgisayar adını ayarlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "Paketler üzerindeki işareti ayarlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"Sorgu için kullanılan HTTP ana bilgisayarını ayarlayın. URL adresinin ana " +"bilgisayarı bir IP adresi olduğunda bu parametreyi kullanın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" +"Sorgu için sunucu adı göstergesini ayarlar. SNI adını devre dışı bırakmak " +"için '-'." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Ayarlar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "Adres Kurallarını Atlayın" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "Önbelleği Atla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "Önbelleği Atla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "Çift Yığın Seçimini Atla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "Çift Yığın Seçimini Atla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "Ipset Kuralını Atla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "Ad Sunucu Kuralını Atla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "SOA Adres Kuralını Atla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "SOA adres kurallarını atlayın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "Hız Kontrolünü Atla" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "Adres kurallarını atla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "İpset kurallarını atla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "İsim sunucusu kurallarını atla." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "SmartDNS Sunucusu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" +"SmartDNS yerel bir yüksek performanslı DNS sunucusudur, en hızlı IP'yi " +"bulmayı destekler, reklam filtrelemeyi destekler ve DNS zehirlenmesinden " +"kaçınmayı destekler." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "SmartDNS resmi web sitesi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "Smartdns yerel sunucu bağlantı noktası" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"Smartdns yerel sunucu portu, port 53 olduğunda smartdns otomatik olarak ana " +"dns olarak ayarlanacaktır." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"Smartdns yanıt modu, İlk Ping: ilk ping IP'sini döndürür, En Hızlı IP: en " +"hızlı IP'yi döndürür, En Hızlı Yanıt: en hızlı DNS yanıtını döndürür." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "Smartdns sunucu ismi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "Smartdns hız kontrol modu." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"Verilen etki alanlarındaki herhangi bir ana bilgisayar için döndürülecek bir " +"IP adresi belirtin, Etki alanlarındaki sorgular asla iletilmez ve her zaman " +"IPv4 veya IPv6 olabilen belirtilen IP adresiyle yanıtlanır." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "Hız Kontrol Modu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "Hız kontrol modu geçersiz." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "TCP Sunucusu" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "TCP bağlantı noktası boş" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "TLS Ana Bilgisayar Adı Doğrulama" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "TLS SNI ismi" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "TLS SPKI Sabitleme" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "Tüm alan adı sonuçları için TTL." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "Teknik Destek" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "URL biçim hatası, biçim: http:// veya https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "Güncelleme" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "Dosyaları Güncelle" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "Yapılandırma Dosyası Yükle" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "Etki Alanı Listesi Dosyasını Yükleme" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "Etki alanı listesi dosyasını /etc/smart dns/domain-set'e yükleyin" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" +"Etki alanı listesi dosyasını yükleyin veya Dosya İndirme Ayarı sayfasından " +"otomatik indirmeyi yapılandırın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "Alan listesi dosyasını yükleyin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "smartdns yapılandırma dosyasını /etc/smartdns/conf.d dosyasına yükleyin" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "Yukarı Akış Sunucuları" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"Yukarı Akış Sunucuları, UDP, TCP protokolünü destekler. Lütfen birden fazla " +"yabancı DNS sunucusu da dahil olmak üzere birden fazla DNS sunucusu " +"yapılandırın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "Proxy Kullan" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "Yukarı akış DNS sunucusuna bağlanmak için proxy kullanın." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"TLS sunucusunun geçerliliğini doğrulamak için kullanılır, Değer Base64 kodlu " +"SPKI parmak izidir, TLS'nin geçerliliğinin doğrulanmadığını belirtmek için " +"boş bırakılır." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "Çıkışta önbelleği diske yazın ve başlangıçta yükleyin." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "Evet" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "varsayılan" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "alan adı listesi (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "ipset adı biçim hatası, biçim: [#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "web sitesi açın" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "smartdns yapılandırması (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "smartdns özel ayarlar" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "tür" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" diff --git a/luci-app-smartdns/po/uk/smartdns.po b/luci-app-smartdns/po/uk/smartdns.po new file mode 100644 index 0000000000..783b2e05b7 --- /dev/null +++ b/luci-app-smartdns/po/uk/smartdns.po @@ -0,0 +1,897 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-10-17 17:11+0000\n" +"Last-Translator: Max \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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 5.8-rc\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Додаткові аргументи для висхідних DNS-серверів" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Розширені налаштування" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "Увімкнути" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "НЕ ПРАЦЮЄ" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "ЗАПУЩЕНО" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "Налаштування" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/vi/smartdns.po b/luci-app-smartdns/po/vi/smartdns.po new file mode 100644 index 0000000000..f21fccfacf --- /dev/null +++ b/luci-app-smartdns/po/vi/smartdns.po @@ -0,0 +1,896 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-04-21 13:24+0000\n" +"Last-Translator: Tai Nguyen \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "Các đối số bổ sung cho máy chủ dns ngược dòng" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "Cài đặt Nâng cao" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "" diff --git a/luci-app-smartdns/po/zh_Hans/smartdns.po b/luci-app-smartdns/po/zh_Hans/smartdns.po new file mode 100644 index 0000000000..bfa3d9160a --- /dev/null +++ b/luci-app-smartdns/po/zh_Hans/smartdns.po @@ -0,0 +1,917 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-10 09:38+0000\n" +"Last-Translator: MkQtS \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh_Hans\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "额外的上游 DNS 服务器参数" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "额外的规则标识,具体参考 domain-rule 的帮助说明。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "额外规则标识" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "额外的服务器参数" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "额外的服务器参数,参考 bind 选项的帮助说明。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "高级设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "查询性能优化,有请求时尝试回应 TTL 为 0 的过期记录,以避免查询等待。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "自动设置 Dnsmasq" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "端口更改时自动设为 Dnsmasq 的上游。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "绑定到设备" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "绑定的设备名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "屏蔽域名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "屏蔽域名。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "持久化缓存" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "缓存大小" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "正在收集数据…" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "配置需要从指定域名服务器结果过滤的 IP 黑名单。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "配置屏蔽域名列表。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "配置域名规则列表。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "配置分流域名列表。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "自定义设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "域名屏蔽设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "域名分流设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "DNS 服务器名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "服务器组" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "设置服务器组,例如 office,home。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "DNS 服务器 IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "DNS 服务器端口" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "协议类型" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "DNS 域名结果缓存大小" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "DNS64 服务器配置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "描述" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "重定向 Dnsmasq 到 SmartDNS 失败" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "不校验证书的合法性。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "禁用测速。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "域名地址" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "域名列表" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "域名列表文件" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "域名规则列表" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "域名规则名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "域名规则" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "域名规则设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "域名 TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "域名 TTL 最大值" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "域名 TTL 最小值" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "域名预加载" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "捐助" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "捐助 SmartDNS 项目" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "下载文件" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "下载文件设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"下载域名规则所需要的域名列表文件和 SmartDNS 配置文件,下载完成后刷新页面。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "双栈 IP 优选" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "启用" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "启用自动更新" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "允许在 IPV4 和 IPV6 地址间进行选择" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "启用 IPV6 DNS 服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "启用 TCP DNS 服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "启用每日自动更新。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "启用域名预加载,加速域名响应速度。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "是否启用第二 DNS 服务器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "启用或禁用 SmartDNS 服务" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "从 default 默认服务器组中排除。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "从默认组中排除" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "最快 IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "最快响应" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "文件名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "文件类型" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "使用 IP 黑名单过滤" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "最快 PING" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "停用 IPV6 地址解析" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "停用 IPV6 地址解析。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "停用 HTTPS 地址解析" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "停用 HTTPS 地址解析。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "常规设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "生成 coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"当 SmartDNS 异常时生成 coredump 文件,coredump 文件在 /tmp/smartdns.xxx.core." + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "授予访问 LuCI 应用 SmartDNS 的权限" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "HTTP 主机" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "IP 黑名单" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "IP 黑名单过滤" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "IPV6 服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "IPset 名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "IPset 名称。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "如果本软件对你有帮助,请给作者加个蛋。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "包含配置文件
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"包含配置文件,路径为 /etc/smartdns/conf.d,或自定义配置文件路径,可以从下载页" +"配置自动下载。面配置自动下载。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "IPset 名称,当测速失败时,将查询到的结果添加到对应的 IPSet 集合中。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "下载文件列表。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "监听在指定的设备上,避免非本地网络的 DNS 查询请求。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "本地端口" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "日志文件路径" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "日志级别" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "日志数量" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "日志大小" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "数据包标记" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "所有域名的最大 TTL 值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "所有域名的最小 TTL 值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "NFTSet 名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "NFTSet 名称格式错误,格式:[#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "NFTSet 名称,格式:[#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "未在运行" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "绑定的设备名称。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"NFTset 名称,测速失败时,将查询到的结果添加到 NFTSet 集合中,格式: [#[4|6]:" +"[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "否" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "无速度时 IPSet 名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "无速度时 NFTSet 名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "停用证书校验" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "无" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "仅 Socks5 代理支持 UDP 服务器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "请先设置代理服务器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "代理服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "代理服务器设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "代理服务器地址,格式:[socks5|http]://user:pass@ip:port。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "代理服务器地址格式错误,格式:[socks5|http]://user:pass@ip:port。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "使用指定服务器组查询,比如 office, home。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "运行中" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "回应的域名 TTL 最大值" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "设置返回给客户端的域名 TTL 最大值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "报告 BUG" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "解析本地主机名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "读取 Dnsmasq 的租约文件解析本地主机名。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "响应模式" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "重启" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "重启服务" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "第二 DNS 服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "缓存过期服务" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "服务器组" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "服务器组 %s 不存在" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "服务器名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "设置指定域名的 IP 地址。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "设置指定域名的规则列表。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "设置指定的 IP 黑名单列表。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "设置校验 TLS 主机名。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "设置数据包标记。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"设置查询时使用的 HTTP 主机,当 URL 地址的 host 是 IP 地址时,使用此参数。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "设置服务器 SNI 名称,‘-’表示禁用 SNI 名称。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "设置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "跳过 Address 规则" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "跳过 Cache" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "跳过 Cache。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "跳过双栈优选" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "跳过双栈优选。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "跳过 IPset 规则" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "跳过 Nameserver 规则" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "跳过 Address SOA(#) 规则" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "跳过 Address SOA(#) 规则。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "跳过测速" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "跳过 Address 规则。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "跳过 IPset 规则。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "跳过 Nameserver 规则。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "SmartDNS 服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "SmartDNS 是一个本地高性能 DNS 服务器,支持返回最快 IP,支持广告过滤。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "SmartDNS 官方网站" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "SmartDNS 本地服务端口" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"SmartDNS 本地服务端口,当端口号设置为 53 时,SmartDNS 将会自动配置为主 DNS。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"SmartDNS 响应模式,最快 PING: 返回最早有 Ping 结果的 IP,速度适中;最快 " +"IP: 返回最快 IP,查询请求可能延长; 最快响应:返回最快响应的结果,查询请求时" +"间短。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "SmartDNS 的服务器名称,默认为 smartdns,留空为主机名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "SmartDNS 测速模式。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"配置特定域名返回特定的 IP 地址,域名查询将不到上游服务器请求,直接返回配置的 " +"IP 地址,可用于广告屏蔽。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "测速模式" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "测速模式无效。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "TCP 服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "TCP 端口号为空" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "校验 TLS 主机名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "TLS SNI 名称" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "TLS SPKI 指纹" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "设置所有域名的 TTL 值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "技术支持" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "URL 格式错误,格式:http:// 或 https://" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "更新" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "更新文件" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "上传配置文件" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "上传域名列表文件" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "上传域名列表文件到 /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "上传域名列表文件,或在下载文件设置页面设置自动下载。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "上传域名列表文件。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "上传配置文件到 /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "上游服务器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"上游 DNS 服务器,支持 UDP,TCP 协议。请配置多个上游 DNS 服务器,包括多个国内" +"外服务器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "使用代理" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "使用代理连接上游 DNS 服务器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"用于校验 TLS 服务器的有效性,数值为 Base64 编码的 SPKI 指纹,留空表示不验证 " +"TLS 的合法性。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "退出时保存 Cache 到磁盘,启动时加载。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "是" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "默认" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "域名列表(/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "IPset 名称格式错误,格式:[#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "打开网站" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "SmartDNS 配置文件(/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "SmartDNS 自定义设置,具体配置参数参考指导" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "类型" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" + +#~ msgid "ip" +#~ msgstr "ip" + +#~ msgid "port" +#~ msgstr "端口" diff --git a/luci-app-smartdns/po/zh_Hant/smartdns.po b/luci-app-smartdns/po/zh_Hant/smartdns.po new file mode 100644 index 0000000000..3692dba2e4 --- /dev/null +++ b/luci-app-smartdns/po/zh_Hant/smartdns.po @@ -0,0 +1,950 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-01-05 04:02+0000\n" +"Last-Translator: Yuan Law \n" +"Language-Team: Chinese (Traditional) \n" +"Language: zh_Hant\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 +msgid "Additional Args for upstream dns servers" +msgstr "額外的上游 DNS 伺服器參數" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 +msgid "" +"Additional Flags for rules, read help on domain-rule for more information." +msgstr "關於其他延伸的 Flags,請查閱 domain-rule 的說明文件。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 +msgid "Additional Rule Flag" +msgstr "額外規則標識" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 +msgid "Additional Server Args" +msgstr "額外的伺服器參數" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 +msgid "" +"Additional server args, refer to the help description of the bind option." +msgstr "額外的伺服器參數,參考 bind 選項的說明文件。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 +msgid "Advanced Settings" +msgstr "進階設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 +msgid "" +"Attempts to serve old responses from cache with a TTL of 0 in the response " +"without waiting for the actual resolution to finish." +msgstr "查詢性能優化,有請求時嘗試回應 TTL 為 0 的過期記錄,以避免查詢等待。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically Set Dnsmasq" +msgstr "自動設定 Dnsmasq" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 +msgid "Automatically set as upstream of dnsmasq when port changes." +msgstr "通訊埠更改時自動設為 dnsmasq 的上游。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Bind Device" +msgstr "繫結到裝置" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Bind Device Name" +msgstr "繫結的裝置名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain" +msgstr "封鎖網域" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 +msgid "Block domain." +msgstr "封鎖網域。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Cache Persist" +msgstr "持久化快取" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "Cache Size" +msgstr "快取大小" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 +msgid "Collecting data ..." +msgstr "資料採集中..." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 +msgid "" +"Configure IP blacklists that will be filtered from the results of specific " +"DNS server." +msgstr "配置需要从指定網域伺服器結果過濾的 IP 黑名單。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Configure block domain list." +msgstr "設定封鎖網域清單。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 +msgid "Configure domain rule list." +msgstr "設定網域規則清單。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +msgid "Configure forwarding domain name list." +msgstr "設定分流網域清單。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 +msgid "Custom Settings" +msgstr "自訂設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 +msgid "DNS Block Setting" +msgstr "網域封鎖設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 +msgid "DNS Forwarding Setting" +msgstr "網域分流設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 +msgid "DNS Server Name" +msgstr "DNS 伺服器名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 +msgid "DNS Server group" +msgstr "伺服器群組" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "DNS Server group belongs to, such as office, home." +msgstr "設定伺服器群組,例如 office、home。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 +msgid "DNS Server ip" +msgstr "DNS 伺服器 IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 +msgid "DNS Server port" +msgstr "DNS 伺服器通訊埠" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 +msgid "DNS Server type" +msgstr "協定類型" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 +msgid "DNS domain result cache size" +msgstr "快取 DNS 的結果,快取大小,設定零則不快取" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 +msgid "DNS64" +msgstr "DNS64" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 +msgid "DNS64 Server Settings" +msgstr "DNS64 伺服器設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 +msgid "Description" +msgstr "描述" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 +msgid "Dnsmasq Forwarded To Smartdns Failure" +msgstr "重新導向 dnsmasq 到 smartdns 失敗" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 +msgid "Do not check certificate." +msgstr "不校驗憑證的合法性。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 +msgid "Do not check speed." +msgstr "停用測速。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Domain Address" +msgstr "網域位址" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 +msgid "Domain List" +msgstr "網域清單" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 +msgid "Domain List File" +msgstr "網域清單檔案" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 +msgid "Domain Rule List" +msgstr "網域規則清單" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 +msgid "Domain Rule Name" +msgstr "網域規則名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules" +msgstr "網域規則" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 +msgid "Domain Rules Settings" +msgstr "網域規則設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "Domain TTL" +msgstr "網域 TTL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 +msgid "Domain TTL Max" +msgstr "網域 TTL 最大值" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 +msgid "Domain TTL Min" +msgstr "網域 TTL 最小值" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 +msgid "Domain prefetch" +msgstr "網域預加載" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 +msgid "Donate" +msgstr "捐贈" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 +msgid "Donate to smartdns" +msgstr "捐贈 smartdns 項目" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 +msgid "Download Files" +msgstr "下載檔案" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "Download Files Setting" +msgstr "下載檔案設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 +msgid "" +"Download domain list files for domain-rule and include config files, please " +"refresh the page after download to take effect." +msgstr "" +"下載網域規則所需要的網域清單檔案和 smartdns 設定檔案,下載完成後更新頁面。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 +msgid "Dual-stack IP Selection" +msgstr "雙棧 IP 優選" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 +msgid "Enable" +msgstr "啟用" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable Auto Update" +msgstr "啟用自動更新" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 +msgid "Enable IP selection between IPV4 and IPV6" +msgstr "啟用 IPV4 和 IPV6 間的 IP 優選策略" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "Enable IPV6 DNS Server" +msgstr "啟用 IPV6 DNS 伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "Enable TCP DNS Server" +msgstr "啟用 TCP DNS 伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 +msgid "Enable daily auto update." +msgstr "啟用每日自動更新。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 +msgid "Enable domain prefetch, accelerate domain response speed." +msgstr "啟用網域預載入,加速網域回應速度。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 +msgid "Enable or disable second DNS server." +msgstr "是否啟用第二 DNS 伺服器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 +msgid "Enable or disable smartdns server" +msgstr "啟用或停用 SmartDNS 服務" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude DNS Server from default group." +msgstr "從 default 預設伺服器群組中排除。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 +msgid "Exclude Default Group" +msgstr "從預設群組中排除" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 +msgid "Fastest IP" +msgstr "最快 IP" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 +msgid "Fastest Response" +msgstr "最快回應" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 +msgid "File Name" +msgstr "檔案名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "File Type" +msgstr "檔案類型" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 +msgid "Filtering IP with blacklist" +msgstr "使用 IP 黑名單過濾" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 +msgid "First Ping" +msgstr "最快 PING" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA" +msgstr "停用 IPV6 位址解析" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 +msgid "Force AAAA SOA." +msgstr "停用 IPV6 位址解析。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA" +msgstr "停用 HTTPS 位址解析" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 +msgid "Force HTTPS SOA." +msgstr "停用 HTTPS 位址解析。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 +msgid "General Settings" +msgstr "一般設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 +msgid "Generate Coredump" +msgstr "產生 coredump" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 +msgid "" +"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" +"smartdns.xxx.core." +msgstr "" +"當 smartdns 異常時產生 coredump 檔案,coredump 檔案在 /tmp/smartdns.xxx." +"core。" + +#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 +msgid "Grant access to LuCI app smartdns" +msgstr "授予存取 LuCI 應用 smartdns 的權限" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 +msgid "HTTP Host" +msgstr "HTTP 主機" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "IP Blacklist" +msgstr "IP 黑名單" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 +msgid "IP Blacklist Filtering" +msgstr "IP 黑名單過濾" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 +msgid "IPV6 Server" +msgstr "IPV6 伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset Name" +msgstr "IPset 名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 +msgid "IPset name." +msgstr "IPset 名稱。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 +msgid "If you like this software, please buy me a cup of coffee." +msgstr "如果本軟體對您有幫助,請給作者加個蛋。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 +msgid "Include Config Files
/etc/smartdns/conf.d" +msgstr "包含設定檔案
/etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 +msgid "" +"Include other config files from /etc/smartdns/conf.d or custom path, can be " +"downloaded from the download page." +msgstr "" +"包含設定檔案,路徑為 /etc/smartdns/conf.d,或自訂設定檔案路徑,可以從下載頁設" +"定自動下載。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 +msgid "Ipset name, Add domain result to ipset when speed check fails." +msgstr "IPset 名稱,當測速失敗時,將查詢到的結果加入到對應的 IPSet 集合中。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 +msgid "List of files to download." +msgstr "下載檔案清單。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 +msgid "Listen only on the specified interfaces." +msgstr "監聽在指定的裝置上,避免非本地網路的 DNS 查詢請求。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Local Port" +msgstr "本地通訊埠" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 +msgid "Log File" +msgstr "日誌檔案路徑" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 +msgid "Log Level" +msgstr "日誌級別" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 +msgid "Log Number" +msgstr "日誌數量" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 +msgid "Log Size" +msgstr "日誌大小" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 +msgid "Marking Packets" +msgstr "資料封包標記" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 +msgid "Maximum TTL for all domain result." +msgstr "所有網域的最大 TTL 值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 +msgid "Minimum TTL for all domain result." +msgstr "所有網域的最小 TTL 值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset Name" +msgstr "NFTSet 名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 +msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" +msgstr "NFTSet 名稱格式錯誤,格式:[#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 +msgid "NFTset name, format: [#[4|6]:[family#table#set]]" +msgstr "NFTSet 名稱,格式:[#[4|6]:[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 +msgid "NOT RUNNING" +msgstr "未執行" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 +msgid "Name of device name listen on." +msgstr "繫結的裝置名稱。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 +msgid "" +"Nftset name, Add domain result to nftset when speed check fails, format: " +"[#[4|6]:[family#table#set]]" +msgstr "" +"NFTset 名稱,測速失敗時,將查詢到的結果加入到 NFTSet 集合中,格式:[#[4|6]:" +"[family#table#set]]" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 +msgid "No" +msgstr "否" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 +msgid "No Speed IPset Name" +msgstr "無速度時 IPSet 名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 +msgid "No Speed NFTset Name" +msgstr "無速度時 NFTSet 名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 +msgid "No check certificate" +msgstr "停用憑證校驗" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 +msgid "None" +msgstr "無" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 +msgid "Only socks5 proxy support udp server." +msgstr "僅 SOCKS5 代理支援 UDP 伺服器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 +msgid "Please set proxy server first." +msgstr "請先設定代理伺服器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server" +msgstr "代理伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 +msgid "Proxy Server Settings" +msgstr "代理伺服器設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 +msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." +msgstr "代理伺服器位址,格式:[socks5|http]://user:pass@ip:port." + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 +msgid "" +"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." +msgstr "代理伺服器位址格式錯誤,格式:[socks5|http]://user:pass@ip:port。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 +msgid "Query DNS through specific dns server group, such as office, home." +msgstr "使用指定伺服器組查詢,比如office, home。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 +msgid "RUNNING" +msgstr "執行中" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 +msgid "Reply Domain TTL Max" +msgstr "回應的網域 TTL 最大值" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 +msgid "Reply maximum TTL for all domain result." +msgstr "設定返回給客戶端的網域 TTL 最大值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 +msgid "Report bugs" +msgstr "報告 BUG" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve Local Hostnames" +msgstr "解析本地主機名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 +msgid "Resolve local hostnames by reading Dnsmasq lease file." +msgstr "讀取 Dnsmasq 的租約文檔解析本地主機名。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 +msgid "Response Mode" +msgstr "回應模式" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 +msgid "Restart" +msgstr "重啟" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 +msgid "Restart Service" +msgstr "重啟服務" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 +msgid "Second Server Settings" +msgstr "第二 DNS 伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 +msgid "Serve expired" +msgstr "快取過期服務" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 +msgid "Server Group" +msgstr "伺服器群組" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 +msgid "Server Group %s not exists" +msgstr "伺服器群組 %s 不存在" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Server Name" +msgstr "伺服器名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 +msgid "Set Specific domain ip address." +msgstr "設定指定網域的 IP 位址。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 +msgid "Set Specific domain rule list." +msgstr "設定指定網域的規則清單。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 +msgid "Set Specific ip blacklist." +msgstr "設定指定的 IP 黑名單列表。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 +msgid "Set TLS hostname to verify." +msgstr "設定校驗 TLS 主機名。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 +msgid "Set mark on packets." +msgstr "設定資料封包標記。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 +msgid "" +"Set the HTTP host used for the query. Use this parameter when the host of " +"the URL address is an IP address." +msgstr "" +"設定查詢時使用的 HTTP 主機,當 URL 位址的 host 是 IP 位址時,使用此參數。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 +msgid "Sets the server name indication for query. '-' for disable SNI name." +msgstr "設定伺服器 SNI 名稱,「-」表示停用 SNI 名稱。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 +msgid "Settings" +msgstr "設定" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 +msgid "Skip Address Rules" +msgstr "略過 address 規則" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache" +msgstr "略過 cache" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 +msgid "Skip Cache." +msgstr "略過 cache。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 +msgid "Skip Dualstack Selection" +msgstr "略過雙栈優選" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 +msgid "Skip Dualstack Selection." +msgstr "略過雙栈優選。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 +msgid "Skip Ipset Rule" +msgstr "略過 ipset 規則" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 +msgid "Skip Nameserver Rule" +msgstr "略過 Nameserver 規則" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 +msgid "Skip SOA Address Rule" +msgstr "略過 address SOA(#) 規則" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 +msgid "Skip SOA address rules." +msgstr "略過 address SOA(#) 規則。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 +msgid "Skip Speed Check" +msgstr "略過測速" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 +msgid "Skip address rules." +msgstr "略過 address 規則。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 +msgid "Skip ipset rules." +msgstr "略過 ipset 規則。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 +msgid "Skip nameserver rules." +msgstr "略過 Nameserver 規則。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 +#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 +msgid "SmartDNS" +msgstr "SmartDNS" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 +msgid "SmartDNS Server" +msgstr "SmartDNS 伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 +msgid "" +"SmartDNS is a local high-performance DNS server, supports finding fastest " +"IP, supports ad filtering, and supports avoiding DNS poisoning." +msgstr "SmartDNS 是一個本地高效能 DNS 伺服器,支援返回最快 IP,支援廣告過濾。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 +msgid "SmartDNS official website" +msgstr "SmartDNS 官方網站" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 +msgid "Smartdns local server port" +msgstr "SmartDNS 本地服務通訊埠" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 +msgid "" +"Smartdns local server port, smartdns will be automatically set as main dns " +"when the port is 53." +msgstr "" +"SmartDNS 本地服務連接埠,當連接埠號設定為 53 時,SmartDNS 將會自動設定為主 " +"DNS。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 +msgid "" +"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " +"return the fastest IP, Fastest Response: return the fastest DNS response." +msgstr "" +"SmartDNS 回應模式,最快 PING: 返回最早有 ping 結果的 IP,速度適中;最快 " +"IP: 返回最快 IP,查詢請求可能延長; 最快回應:返回最快回應的結果,查詢請求時" +"間短。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 +msgid "Smartdns server name" +msgstr "SmartDNS 的伺服器名稱,默认為 smartdns,留空為主機名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Smartdns speed check mode." +msgstr "SmartDNS 測速模式。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 +msgid "" +"Specify an IP address to return for any host in the given domains, Queries " +"in the domains are never forwarded and always replied to with the specified " +"IP address which may be IPv4 or IPv6." +msgstr "" +"設定特定網域返回特定的 IP 位址,網域查詢將不到上游伺服器請求,直接返回設定的 " +"IP 位址,可用於廣告封鎖。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 +msgid "Speed Check Mode" +msgstr "測速模式" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 +msgid "Speed check mode is invalid." +msgstr "無法使用 Speed check mode。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 +msgid "TCP Server" +msgstr "TCP 伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 +msgid "TCP port is empty" +msgstr "請輸入 TCP 埠號" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 +msgid "TLS Hostname Verify" +msgstr "校驗 TLS 主機名" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 +msgid "TLS SNI name" +msgstr "TLS SNI 名稱" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 +msgid "TLS SPKI Pinning" +msgstr "TLS SPKI 指紋" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 +msgid "TTL for all domain result." +msgstr "設定所有網域的 TTL 值。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 +msgid "Technical Support" +msgstr "技術支援" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 +msgid "URL format error, format: http:// or https://" +msgstr "網址錯誤,正確格式為 http:// 或 https:// 開頭" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 +msgid "Update" +msgstr "更新" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 +msgid "Update Files" +msgstr "更新檔案" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 +msgid "Upload Config File" +msgstr "上傳設定檔" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 +msgid "Upload Domain List File" +msgstr "上傳網域清單檔案" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 +msgid "Upload domain list file to /etc/smartdns/domain-set" +msgstr "上傳網域清單檔案到 /etc/smartdns/domain-set" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 +msgid "" +"Upload domain list file, or configure auto download from Download File " +"Setting page." +msgstr "上傳網域清單檔案,或在下載檔案設定頁面設定自動下載。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 +msgid "Upload domain list file." +msgstr "上傳網域清單檔案。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 +msgid "Upload smartdns config file to /etc/smartdns/conf.d" +msgstr "上傳設定檔案到 /etc/smartdns/conf.d" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 +msgid "Upstream Servers" +msgstr "上游伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 +msgid "" +"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " +"servers, including multiple foreign DNS servers." +msgstr "" +"上游 DNS 伺服器,支援 UDP、TCP 協定。請設定多個上游 DNS 伺服器,包括多個國內" +"外伺服器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 +msgid "Use Proxy" +msgstr "使用代理伺服器" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 +msgid "Use proxy to connect to upstream DNS server." +msgstr "使用代理伺服器來連線上游 DNS 伺服器。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 +msgid "" +"Used to verify the validity of the TLS server, The value is Base64 encoded " +"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " +"verified." +msgstr "" +"用於校驗 TLS 伺服器的有效性,數值為 Base64 編碼的 SPKI 指紋,留空表示不驗證 " +"TLS 的合法性。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 +msgid "Write cache to disk on exit and load on startup." +msgstr "退出時儲存 cache 到磁碟,啟動時載入。" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 +msgid "Yes" +msgstr "是" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 +msgid "default" +msgstr "預設" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 +msgid "domain list (/etc/smartdns/domain-set)" +msgstr "網域清單 (/etc/smartdns/domain-set)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 +msgid "https" +msgstr "https" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 +msgid "ipset name format error, format: [#[4|6]:]ipsetname" +msgstr "IPset 名稱格式錯誤,格式:[#[4|6]:]ipsetname" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 +msgid "open website" +msgstr "開啟網站" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 +msgid "smartdns config (/etc/smartdns/conf.d)" +msgstr "smartdns 設定檔案 (/etc/smartdns/conf.d)" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 +msgid "smartdns custom settings" +msgstr "smartdns 自訂設定,具體設定參數參考指導" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 +msgid "tcp" +msgstr "tcp" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 +msgid "tls" +msgstr "tls" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 +msgid "type" +msgstr "類型" + +#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 +msgid "udp" +msgstr "udp" + +#~ msgid "ip" +#~ msgstr "ip" + +#~ msgid "port" +#~ msgstr "通訊埠" + +#~ msgid "" +#~ "DNS Server group belongs to, used with nameserver, such as office, home." +#~ msgstr "DNS 伺服器所屬組, 配合 nameserver 使用,例如:office,home。" + +#~ msgid "Dnsmasq Forwared To Smartdns Failure" +#~ msgstr "重定向 dnsmasq 到 smartdns 失敗" + +#~ msgid "Sets the server name indication for query." +#~ msgstr "設置查詢時使用的伺服器 SNI 名稱。" + +#~ msgid "IPV4 53 Port Redirect Failure" +#~ msgstr "IPV4 53 通訊埠重定向失敗" + +#~ msgid "IPV6 53 Port Redirect Failure" +#~ msgstr "IPV6 53 通訊埠重定向失敗" + +#~ msgid "Redirect" +#~ msgstr "重定向" + +#~ msgid "Redirect 53 port to SmartDNS" +#~ msgstr "重定向 53 通訊埠到 SmartDNS" + +#~ msgid "Run as dnsmasq upstream server" +#~ msgstr "作為 dnsmasq 的上游伺服器" + +#~ msgid "SmartDNS redirect mode" +#~ msgstr "SmartDNS 重定向模式" + +#~ msgid "none" +#~ msgstr "无" diff --git a/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json b/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json new file mode 100644 index 0000000000..9c00f9f36f --- /dev/null +++ b/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json @@ -0,0 +1,12 @@ +{ + "admin/services/smartdns": { + "title": "SmartDNS", + "action": { + "type": "view", + "path": "smartdns/smartdns" + }, + "depends": { + "acl": [ "luci-app-smartdns" ] + } + } +} diff --git a/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json b/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json new file mode 100644 index 0000000000..8c4cd01249 --- /dev/null +++ b/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json @@ -0,0 +1,22 @@ +{ + "luci-app-smartdns": { + "description": "Grant access to LuCI app smartdns", + "read": { + "file": { + "/etc/smartdns/*": [ "read" ] + }, + "ubus": { + "service": [ "list" ] + }, + "uci": [ "smartdns" ] + }, + "write": { + "file": { + "/etc/smartdns/*": [ "write" ], + "/etc/init.d/smartdns restart": [ "exec" ], + "/etc/init.d/smartdns updatefiles": [ "exec" ] + }, + "uci": [ "smartdns" ] + } + } +} diff --git a/openmptcprouter-full/Makefile b/openmptcprouter-full/Makefile index 0900ce9276..893464121f 100644 --- a/openmptcprouter-full/Makefile +++ b/openmptcprouter-full/Makefile @@ -78,7 +78,7 @@ MY_DEPENDS := \ !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):umbim !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-mii !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-wdm !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net-qmi-wwan !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net-cdc-mbim !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):umbim \ !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-huawei-cdc-ncm !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-rndis !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-cdc-ether !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-ipheth !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):usbmuxd !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):libusbmuxd \ !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):luci-proto-qmi !LINUX_5_4:wpad-mesh-openssl !LINUX_5_4:libopenssl-legacy LINUX_5_4:wpad-basic (TARGET_x86||TARGET_x86_64||TARGET_rockchip_armv8):kmod-usb-net-rtl8152 \ - !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):luci-app-mlvpn !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):mlvpn 464xlat kmod-zram kmod-swconfig swconfig kmod-ipt-nat kmod-ipt-nat6 luci-app-https-dns-proxy kmod-tcp-nanqinlang iptables-mod-ipopt igmpproxy ss iptraf-ng \ + !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):luci-app-mlvpn !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):mlvpn 464xlat kmod-zram kmod-swconfig swconfig kmod-ipt-nat kmod-ipt-nat6 kmod-tcp-nanqinlang iptables-mod-ipopt igmpproxy ss iptraf-ng \ luci-app-acl block-mount blockd fstools luci-app-shutdown libwebp luci-proto-gre tcptraceroute luci-proto-mbim luci-app-ttyd luci-mod-dashboard kmod-usb2 libustream-openssl (TARGET_x86||TARGET_x86_64):kmod-ixgbevf (TARGET_x86||TARGET_x86_64):kmod-igbvf \ hwinfo (TARGET_x86||TARGET_x86_64):dmidecode kmod-bonding luci-proto-bonding luci-app-sysupgrade \ luci-theme-openwrt-2020 luci-proto-wireguard luci-app-wireguard kmod-crypto-lib-blake2s \ @@ -94,9 +94,10 @@ MY_DEPENDS := \ TARGET_x86_64:kmod-atlantic \ !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-burst !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-first !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-red !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-rr !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):bpftool-full \ !(LINUX_6_10||LINUX_6_11||LINUX_6_12):kmod-ovpn-dco-v2 lspci \ - TARGET_mediatek_filogic:kmod-mt7915-firmware TARGET_mediatek_filogic:kmod-mt7916-firmware TARGET_mediatek_filogic:kmod-mt7986-firmware TARGET_mediatek_filogic:kmod-mt7986-wo-firmware TARGET_mediatek_filogic:kmod-mt7996-firmware TARGET_mediatek_filogic:kmod-mt7996-233-firmware TARGET_mediatek_filogic:mt7988-wo-firmware TARGET_mediatek_filogic:mt7988-2p5g-phy-firmware + TARGET_mediatek_filogic:kmod-mt7915-firmware TARGET_mediatek_filogic:kmod-mt7916-firmware TARGET_mediatek_filogic:kmod-mt7986-firmware TARGET_mediatek_filogic:kmod-mt7986-wo-firmware TARGET_mediatek_filogic:kmod-mt7996-firmware TARGET_mediatek_filogic:kmod-mt7996-233-firmware TARGET_mediatek_filogic:mt7988-wo-firmware TARGET_mediatek_filogic:mt7988-2p5g-phy-firmware \ + luci-app-smartdns -# !TARGET_ipq40xx:kmod-rt2800-usb (TARGET_x86||TARGET_x86_64):kmod-iwlwifi (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl1000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl100 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl105 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl135 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2030 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3160 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3168 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5150 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2a (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2b (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6050 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7260 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265d (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8260c (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8265 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax201 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax200 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax210 \ +# !TARGET_ipq40xx:kmod-rt2800-usb (TARGET_x86||TARGET_x86_64):kmod-iwlwifi (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl1000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl100 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl105 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl135 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2030 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3160 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3168 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5150 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2a (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2b (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6050 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7260 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265d (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8260c (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8265 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax201 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax200 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax210 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax101 \ # !TARGET_ipq40xx:kmod-rtl8xxxu !TARGET_ipq40xx:kmod-rtl8192cu !TARGET_ipq40xx:kmod-net-rtl8192su !LINUX_6_1:kmod-rtl8812au-ct (TARGET_x86||TARGET_x86_64):kmod-r8169 (TARGET_x86||TARGET_x86_64):kmod-8139too (TARGET_x86||TARGET_x86_64):kmod-r8125 !TARGET_ipq40xx:kmod-rtl8187 kmod-rtl8xxxu (TARGET_x86||TARGET_x86_64):rtl8192eu-firmware # shadowsocks-rust-sslocal shadowsocks-rust-ssservice LINUX_5_4:shadowsocks-rust-config !LINUX_5_4:shadowsocks-rust-config-nft luci-app-shadowsocks-rust \ From dc85df4d2adbc4339a98dd54197301810e1a2fbf Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 11:04:49 +0100 Subject: [PATCH 04/10] Update cryptodev --- cryptodev-linux/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cryptodev-linux/Makefile b/cryptodev-linux/Makefile index f03cc528e8..77b7fbf30e 100644 --- a/cryptodev-linux/Makefile +++ b/cryptodev-linux/Makefile @@ -15,8 +15,8 @@ PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/$(PKG_NAME)/$(PKG_NAME).git -PKG_SOURCE_VERSION:=5e7121e45ff283d30097da381fd7e97c4bb61364 -PKG_VERSION:=1.13-$(PKG_SOURCE_VERSION) +PKG_SOURCE_VERSION:=277d4574c10bb8e16ab6ab3f38b8e1cb6cd6c678 +PKG_VERSION:=1.14.20241010 PKG_LICENSE:=GPL-2.0 PKG_LICENSE_FILES:=COPYING @@ -29,7 +29,6 @@ define KernelPackage/cryptodev SUBMENU:=Cryptographic API modules TITLE:=Driver for cryptographic acceleration URL:=http://cryptodev-linux.org/ - VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE) DEPENDS:=+kmod-crypto-authenc +kmod-crypto-hash FILES:=$(PKG_BUILD_DIR)/cryptodev.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,50,cryptodev) From f225e0f89819060f8a16f6dd83b6dee461a10e7a Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 14:47:16 +0100 Subject: [PATCH 05/10] Fix packages version for apk compatibility --- dsvpn/Makefile | 2 +- glorytun-udp/Makefile | 4 ++-- glorytun/Makefile | 4 ++-- libmbim/Makefile | 1 + libqmi/Makefile | 2 +- luci-app-firewall/Makefile | 2 +- luci-app-shadowsocks-libev/Makefile | 1 - luci-app-shadowsocks-rust/Makefile | 3 +-- luci-theme-alpha/Makefile | 2 +- mlvpn/Makefile | 2 +- modemmanager/Makefile | 1 + shadowsocks-libev/Makefile | 2 +- simple-obfs/Makefile | 2 +- tcptraceroute/Makefile | 5 +++-- 14 files changed, 17 insertions(+), 16 deletions(-) diff --git a/dsvpn/Makefile b/dsvpn/Makefile index 8bfae704fa..c025e7ad91 100644 --- a/dsvpn/Makefile +++ b/dsvpn/Makefile @@ -13,7 +13,7 @@ PKG_SOURCE_URL:=https://github.com/Ysurac/dsvpn.git #PKG_SOURCE_VERSION:=3b99d2ef6c02b2ef68b5784bec8adfdd55b29b1a PKG_SOURCE_VERSION:=4333aa705efd9c86c76809614d20dc5ebf43da7f PKG_NAME:=dsvpn -PKG_VERSION:=0.1.5-$(PKG_SOURCE_VERSION) +PKG_VERSION:=0.1.5 PKG_RELEASE:=1 PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE diff --git a/glorytun-udp/Makefile b/glorytun-udp/Makefile index 27fa65c17a..f2520df5da 100644 --- a/glorytun-udp/Makefile +++ b/glorytun-udp/Makefile @@ -12,8 +12,8 @@ PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/angt/glorytun.git PKG_SOURCE_VERSION:=32267e86a6da05b285bb3bf2b136c105dc0af4bb PKG_NAME:=glorytun-udp -PKG_VERSION:=0.3.4-$(PKG_SOURCE_VERSION) -PKG_RELEASE:=23 +PKG_VERSION:=0.3.4 +PKG_RELEASE:=24 PKG_LICENSE:=BSD-2-Clause PKG_LICENSE_FILES:=LICENSE diff --git a/glorytun/Makefile b/glorytun/Makefile index 63a8fe52ce..10297ff4db 100644 --- a/glorytun/Makefile +++ b/glorytun/Makefile @@ -9,12 +9,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=glorytun -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=0c3b03cf0215e0896fd8e7e91be92efa77f6a2d1 PKG_SOURCE:=glorytun-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/Ysurac/glorytun.git -PKG_VERSION:=0.0.35-$(PKG_SOURCE_VERSION) +PKG_VERSION:=0.0.35 PKG_LICENSE:=BSD-2-Clause PKG_LICENSE_FILES:=LICENSE PKG_FIXUP:=autoreconf diff --git a/libmbim/Makefile b/libmbim/Makefile index 02016021c3..5482a3cfb5 100644 --- a/libmbim/Makefile +++ b/libmbim/Makefile @@ -8,6 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libmbim +PKG_VERSION:=1.31.6 PKG_SOURCE_VERSION:=1.31.6-dev #PKG_SOURCE_VERSION:=1866ed53c05916c66c5d52682778a6078e5221d3 PKG_RELEASE:=1 diff --git a/libqmi/Makefile b/libqmi/Makefile index fc43b9048e..ca7122ad55 100644 --- a/libqmi/Makefile +++ b/libqmi/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libqmi -#PKG_SOURCE_VERSION:=1.34.0 +PKG_VERSION:=1.35.6 PKG_SOURCE_VERSION:=1.35.6-dev PKG_RELEASE:=1 diff --git a/luci-app-firewall/Makefile b/luci-app-firewall/Makefile index a9e47df9b6..30a55a9b22 100644 --- a/luci-app-firewall/Makefile +++ b/luci-app-firewall/Makefile @@ -10,7 +10,7 @@ LUCI_TITLE:=Firewall and Portforwarding application LUCI_DEPENDS:=+@LINUX_5_4:firewall +@(LINUX_5_15||LINUX_6_1||LINUX_6_6||LINUX_6_7):uci-firewall PKG_LICENSE:=Apache-2.0 -PKG_VERSION:=omr-202103 +#PKG_VERSION:=omr-202103 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/luci-app-shadowsocks-libev/Makefile b/luci-app-shadowsocks-libev/Makefile index 6a19308fb5..29955e9336 100644 --- a/luci-app-shadowsocks-libev/Makefile +++ b/luci-app-shadowsocks-libev/Makefile @@ -11,7 +11,6 @@ LUCI_TITLE:=LuCI Support for shadowsocks-libev LUCI_DEPENDS:=+luci-compat PKG_LICENSE:=Apache-2.0 -PKG_VERSION:=omr-202103 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/luci-app-shadowsocks-rust/Makefile b/luci-app-shadowsocks-rust/Makefile index 2a9bc51809..1604936e63 100644 --- a/luci-app-shadowsocks-rust/Makefile +++ b/luci-app-shadowsocks-rust/Makefile @@ -1,6 +1,6 @@ # # Copyright (C) 2017 Yousong Zhou -# Copyright (C) 2019-2023 Ycarus (Yannick Chabanois) for OpenMPTCProuter +# Copyright (C) 2019-2024 Ycarus (Yannick Chabanois) for OpenMPTCProuter # # This is free software, licensed under the Apache License, Version 2.0 . # @@ -11,7 +11,6 @@ LUCI_TITLE:=LuCI Support for shadowsocks-rust LUCI_DEPENDS:=+luci-compat PKG_LICENSE:=Apache-2.0 -PKG_VERSION:=omr-202309 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/luci-theme-alpha/Makefile b/luci-theme-alpha/Makefile index 44174974a6..af247d7e0c 100644 --- a/luci-theme-alpha/Makefile +++ b/luci-theme-alpha/Makefile @@ -10,7 +10,7 @@ THEME_NAME:=alpha THEME_TITLE:=Alpha PKG_NAME:=luci-theme-$(THEME_NAME) -PKG_VERSION:=3.9.4-beta +PKG_VERSION:=3.9.4_beta PKG_RELEASE:=9 include $(INCLUDE_DIR)/package.mk diff --git a/mlvpn/Makefile b/mlvpn/Makefile index 455efe415d..a38835c5c1 100644 --- a/mlvpn/Makefile +++ b/mlvpn/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mlvpn -PKG_VERSION:=8aa1b16 +PKG_VERSION:=2.6.5.20211028 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git diff --git a/modemmanager/Makefile b/modemmanager/Makefile index dbb91f50e6..d4592bd975 100644 --- a/modemmanager/Makefile +++ b/modemmanager/Makefile @@ -8,6 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=modemmanager +PKG_VERSION:=1.23.12 PKG_SOURCE_VERSION:=1.23.12-dev #PKG_SOURCE_VERSION:=df8287bf6c2febd068d06f0f45194bc622118bd4 PKG_RELEASE:=21 diff --git a/shadowsocks-libev/Makefile b/shadowsocks-libev/Makefile index c52a13e7e6..986cb5cc36 100644 --- a/shadowsocks-libev/Makefile +++ b/shadowsocks-libev/Makefile @@ -18,7 +18,7 @@ PKG_RELEASE:=11 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/Ysurac/shadowsocks-libev.git PKG_SOURCE_VERSION:=410950d87d8cdf8502d8f59a79dc0ff4c7677543 -PKG_VERSION:=3.3.5-$(PKG_SOURCE_VERSION) +PKG_VERSION:=3.3.5 PKG_MAINTAINER:=Ycarus (Yannick Chabanois) diff --git a/simple-obfs/Makefile b/simple-obfs/Makefile index 5c418444bf..7ee9c6960b 100644 --- a/simple-obfs/Makefile +++ b/simple-obfs/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=simple-obfs -PKG_VERSION:=486bebd9 +PKG_VERSION:=0.0.6 PKG_RELEASE:=3 PKG_SOURCE_PROTO:=git diff --git a/tcptraceroute/Makefile b/tcptraceroute/Makefile index 5d51e0f8fb..dad0bf8ff0 100644 --- a/tcptraceroute/Makefile +++ b/tcptraceroute/Makefile @@ -8,11 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=tcptraceroute -PKG_VERSION:=1.5beta7 +PKG_REALVERSION:=1.5beta7 +PKG_VERSION:=1.5_beta7 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=tcptraceroute-$(PKG_VERSION) +PKG_SOURCE_VERSION:=tcptraceroute-$(PKG_REALVERSION) PKG_SOURCE_URL:=https://github.com/mct/tcptraceroute.git include $(INCLUDE_DIR)/package.mk From 7e85c4751da7f7ea82fca217ce75e831003229ee Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 14:47:31 +0100 Subject: [PATCH 06/10] Update mptcpd --- mptcpd/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mptcpd/Makefile b/mptcpd/Makefile index b33a6bd804..81157622d6 100644 --- a/mptcpd/Makefile +++ b/mptcpd/Makefile @@ -10,8 +10,8 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mptcpd PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/multipath-tcp/mptcpd.git -PKG_SOURCE_VERSION:=d186d935fa21ef95fb1784abaeca6d0803978351 -PKG_VERSION:=0.13-$(PKG_SOURCE_VERSION) +PKG_SOURCE_VERSION:=0c36dbadb56586ad51b7945e3434c87c7f1b16f4 +PKG_VERSION:=0.13 PKG_RELEASE:=1 PKG_MAINTAINER:=Ycarus (Yannick Chabanois) From 4e08bcc1b27213b791f239d50caaf8c892a887fc Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 14:48:36 +0100 Subject: [PATCH 07/10] Remove not needed files on openmptcprouter-api package --- .../luci/menu.d/luci-app-openmptcprouter.json | 13 ------------- .../share/rpcd/acl.d/luci-app-openmptcprouter.json | 14 -------------- 2 files changed, 27 deletions(-) delete mode 100644 openmptcprouter-api/files/usr/share/luci/menu.d/luci-app-openmptcprouter.json delete mode 100644 openmptcprouter-api/files/usr/share/rpcd/acl.d/luci-app-openmptcprouter.json diff --git a/openmptcprouter-api/files/usr/share/luci/menu.d/luci-app-openmptcprouter.json b/openmptcprouter-api/files/usr/share/luci/menu.d/luci-app-openmptcprouter.json deleted file mode 100644 index eea51e8f9c..0000000000 --- a/openmptcprouter-api/files/usr/share/luci/menu.d/luci-app-openmptcprouter.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "admin/system/openmptcprouter": { - "title": "OpenMPTCProuter", - "order": 1, - "action": { - "type": "template", - "path": "openmptcprouter/wizard" - }, - "depends": { - "acl": [ "luci-app-openmptcprouter" ] - } - } -} diff --git a/openmptcprouter-api/files/usr/share/rpcd/acl.d/luci-app-openmptcprouter.json b/openmptcprouter-api/files/usr/share/rpcd/acl.d/luci-app-openmptcprouter.json deleted file mode 100644 index a1d3b99a3e..0000000000 --- a/openmptcprouter-api/files/usr/share/rpcd/acl.d/luci-app-openmptcprouter.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "luci-app-openmptcprouter": { - "description": "Grant UCI access for luci-app-openmptcprouter", - "read": { - "uci": [ "*" ], - "ubus": { - "openmptcprouter": [ "*" ] - } - }, - "write": { - "uci": [ "*" ] - } - } -} \ No newline at end of file From 88863e42da1e3084d96b94fd95d57d948e65ed82 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 14:54:06 +0100 Subject: [PATCH 08/10] Remove luci-app-snmpd --- luci-app-snmpd/Makefile | 15 - luci-app-snmpd/luasrc/controller/snmpd.lua | 8 - luci-app-snmpd/luasrc/model/cbi/snmpd.lua | 141 ------- luci-app-snmpd/luasrc/view/snmpd.htm | 132 ------- luci-app-snmpd/po/de/snmpd.po | 184 --------- luci-app-snmpd/po/fr/snmpd.po | 184 --------- luci-app-snmpd/po/it/snmpd.po | 184 --------- luci-app-snmpd/po/oc/snmpd.po | 184 --------- luci-app-snmpd/po/templates/snmpd.pot | 175 --------- luci-app-snmpd/po/zh_Hans/snmpd.po | 184 --------- luci-app-snmpd/root/etc/config/snmpd | 91 ----- luci-app-snmpd/root/etc/init.d/snmpd | 349 ------------------ .../root/etc/uci-defaults/4400-snmpd | 19 - .../usr/share/luci/menu.d/luci-app-snmpd.json | 13 - .../usr/share/rpcd/acl.d/luci-app-snmpd.json | 11 - 15 files changed, 1874 deletions(-) delete mode 100644 luci-app-snmpd/Makefile delete mode 100644 luci-app-snmpd/luasrc/controller/snmpd.lua delete mode 100644 luci-app-snmpd/luasrc/model/cbi/snmpd.lua delete mode 100644 luci-app-snmpd/luasrc/view/snmpd.htm delete mode 100644 luci-app-snmpd/po/de/snmpd.po delete mode 100644 luci-app-snmpd/po/fr/snmpd.po delete mode 100644 luci-app-snmpd/po/it/snmpd.po delete mode 100644 luci-app-snmpd/po/oc/snmpd.po delete mode 100644 luci-app-snmpd/po/templates/snmpd.pot delete mode 100644 luci-app-snmpd/po/zh_Hans/snmpd.po delete mode 100644 luci-app-snmpd/root/etc/config/snmpd delete mode 100755 luci-app-snmpd/root/etc/init.d/snmpd delete mode 100755 luci-app-snmpd/root/etc/uci-defaults/4400-snmpd delete mode 100644 luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json delete mode 100644 luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json diff --git a/luci-app-snmpd/Makefile b/luci-app-snmpd/Makefile deleted file mode 100644 index 12f22abd38..0000000000 --- a/luci-app-snmpd/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (C) 2018-2019 Ycarus (Yannick Chabanois) -# -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=LuCI SNMPD Interface -LUCI_DEPENDS:=+snmpd +snmptrapd +snmp-utils +snmp-mibs - -PKG_LICENSE:=GPLv3 - -#include ../luci/luci.mk -include $(TOPDIR)/feeds/luci/luci.mk -# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-snmpd/luasrc/controller/snmpd.lua b/luci-app-snmpd/luasrc/controller/snmpd.lua deleted file mode 100644 index 2694da2192..0000000000 --- a/luci-app-snmpd/luasrc/controller/snmpd.lua +++ /dev/null @@ -1,8 +0,0 @@ -local ucic = luci.model.uci.cursor() -local dt = require "luci.cbi.datatypes" -module("luci.controller.snmpd", package.seeall) - -function index() - entry({"admin", "network", "snmpd"}, alias("admin", "network", "snmpd", "index"), _("SNMPd")) - entry({"admin", "network", "snmpd", "index"}, cbi("snmpd")) -end diff --git a/luci-app-snmpd/luasrc/model/cbi/snmpd.lua b/luci-app-snmpd/luasrc/model/cbi/snmpd.lua deleted file mode 100644 index 132b3a1d25..0000000000 --- a/luci-app-snmpd/luasrc/model/cbi/snmpd.lua +++ /dev/null @@ -1,141 +0,0 @@ --- Copyright 2018 Ycarus (Yannick Chabanois) --- Licensed to the public under the Apache License 2.0. - -m = Map("snmpd", translate("SNMPd"), translate("SNMPd settings interface (Beta)")) - -s = m:section(TypedSection, "snmpd", translate("General")) -s.addremove = false - -enabled = s:option(Flag, "enabled", translate("Enabled")) -enabled.rmempty = false - -network = s:option(Value, "network", translate("Networks")) -network.template = "cbi/network_netlist" -network.widget = "checkbox" -network.rmempty = true -network.cast = "string" -network.nocreate = true - -s = m:section(TypedSection, "system", translate("System")) -s.addremove = false - -sysLocation = s:option(Value, "sysLocation", translate("Location")) -sysContact = s:option(Value, "sysContact", translate("Contact")) -sysName = s:option(Value, "sysName", translate("Name")) ---sysServices = s:option(Value, "sysServices", translate("Services")) ---sysDescr = s:option(Value, "sysDescr", translate("Description")) ---sysObjectID = s:option(Value, "sysObjectID", translate("ObjectID")) - -s = m:section(TypedSection, "com2sec", translate("com2sec security")) -s.addremove = true - -secname = s:option(ListValue, "secname", translate("Server")) -secname.optional = false -secname:value("ro",translate("Read-only")) -secname:value("rw",translate("Read-write")) - -source = s:option(Value, "source", translate("Source")) -source.datatype = "host" -source.optional = false -source.rmempty = false - -community = s:option(Value, "community", translate("Community")) -community.optional = false -community.rmempty = false - ---s = m:section(TypedSection, "com2sec6", translate("com2sec6")) ---s.addremove = true - ---secname = s:option(ListValue, "secname", translate("secname")) ---secname.optional = false ---secname:value("ro",translate("Read-only")) ---secname:value("rw",translate("Read-write")) - ---source = s:option(Value, "source", translate("Source")) ---source.datatype = "host" ---source.optional = false ---source.rmempty = false - ---community = s:option(Value, "community", translate("Community")) ---community.optional = false ---community.rmempty = false - -s = m:section(TypedSection, "group", translate("Group"), translate("Groups help define access methods")) -s.addremove = true -s.anonymous = false - -secname = s:option(ListValue, "secname", translate("secname")) -secname.optional = false -secname:value("ro",translate("Read-only")) -secname:value("rw",translate("Read-write")) - -group = s:option(Value, "group", translate("Group")) -group.optional = false -group.rmempty = false - -version = s:option(ListValue, "version", translate("version")) -version.optional = false -version:value("v1","v1") -version:value("v2c","v2c") -version:value("usm","usm") - -s = m:section(TypedSection, "access", translate("Access")) -s.addremove = true -s.anonymous = false - -group = s:option(Value, "group", translate("Group")) -group.optional = false -group.rmempty = false - -version = s:option(ListValue, "version", translate("version")) -version.optional = false -version:value("any",translate("any")) -version:value("v1","v1") -version:value("v2c","v2c") -version:value("usm","usm") - -context = s:option(ListValue, "context", translate("Context")) -context.optional = false -context:value("none","none") - -level = s:option(ListValue, "level", translate("Level")) -level.optional = false -level:value("noauth",translate("noauth")) -level:value("auth",translate("auth")) - -read = s:option(ListValue, "read", translate("Read")) -read.optional = false -read:value("all","all") -read:value("none","none") - -write = s:option(ListValue, "write", translate("Write")) -write.optional = false -write:value("all","all") -write:value("none","none") - -notify = s:option(ListValue, "notify", translate("Notify")) -notify.optional = false -notify:value("all","all") -notify:value("none","none") - ---s = m:section(TypedSection, "engineid", translate("engineid")) ---s.addremove = false ---s.anonymous = true - ---engineid = s:option(Value, "engineid", translate("engineid")) ---engineidtype = s:option(ListValue, "engineidtype", translate("engineidtype")) ---engineidtype:value("1",translate("IPv4")) ---engineidtype:value("2",translate("IPv6")) ---engineidtype:value("3",translate("MAC")) ---engineidnic = s:option(Value, "engineidnic", translate("engineidnic")) - -s = m:section(TypedSection, "exec", translate("Exec")) -s.addremove = true -s.anonymous = true - -miboid = s:option(Value, "miboid", translate("ObjectID")) -name = s:option(Value, "name", translate("Name")) -prog = s:option(Value, "prog", translate("Program")) -args = s:option(Value, "args", translate("Arguments")) - -return m diff --git a/luci-app-snmpd/luasrc/view/snmpd.htm b/luci-app-snmpd/luasrc/view/snmpd.htm deleted file mode 100644 index 74e60ca9a6..0000000000 --- a/luci-app-snmpd/luasrc/view/snmpd.htm +++ /dev/null @@ -1,132 +0,0 @@ -<%+header%> - - - -<% - local uci = require("luci.model.uci").cursor() - local hosts = uci:get_list("dhcp", uci:get_first("dhcp","dnsmasq"), "ipset") - local ips = uci:get_list("omr-bypass", "ips", "ip") - local dpi = uci:get_list("omr-bypass", "dpi", "proto") - local tmpfile = os.tmpname() - local dpi_available_proto = luci.util.execi("cat /proc/net/xt_ndpi/proto | awk '{print $3}' | sort -u | head -n -1") - local sys = require "luci.sys" - local ifaces = sys.net:devices() - local bypassif = uci:get("omr-bypass","defaults","ifname") or "" -%> -<% if stderr and #stderr > 0 then %>
<%=pcdata(stderr)%>
<% end %> -
-
-

<%:SNMPd%>

-
- <%:General%> -
-
- -
- checked<% end %>> -
-
-
- network -
-
-
- -
-
-
-
- -
-
-
-
- -
-
- -

<%:General%>

- -
-
-
-
-
<%:Domain, IP or network%>
-
<%:Output interface%>
-
-
-
-
-
- -
-
-
- -
-
-
-
- -
-
-
-

<%:Protocols%>

-
-
-
-
<%:Protocols%>
-
<%:Output interface%>
-
-
-
-
-<% - local allprt="""" - local protos = {} - for l in io.lines("/proc/net/xt_ndpi/proto") do - local a,b,c,d = l:match('(%w+) (%w+)') - if b ~= "2" and not string.match(b,"custom") then - table.insert(protos,b) - end - end - table.sort(protos) - for _,b in ipairs(protos) do - allprt=allprt .. ","" .. b .. """ - end -%> -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- - -
- - -<%+footer%> diff --git a/luci-app-snmpd/po/de/snmpd.po b/luci-app-snmpd/po/de/snmpd.po deleted file mode 100644 index cfe49bcaea..0000000000 --- a/luci-app-snmpd/po/de/snmpd.po +++ /dev/null @@ -1,184 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-05 12:39+0000\n" -"Last-Translator: Weblate Admin \n" -"Language-Team: German \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.4\n" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:82 -msgid "Access" -msgstr "Zugriff" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:81 -#: luci-app-snmpd/luasrc/view/snmpd.htm:122 -msgid "Add" -msgstr "Hinzufügen" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:66 -#: luci-app-snmpd/luasrc/view/snmpd.htm:116 -msgid "All" -msgstr "alle" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:139 -msgid "Arguments" -msgstr "Parameter" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:42 -msgid "Community" -msgstr "Community" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:23 -msgid "Contact" -msgstr "Kontakt" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:97 -msgid "Context" -msgstr "Umgebung" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:54 -msgid "Domain, IP or network" -msgstr "FQDN, IP-Adresse oder CIDR-Netzmaske" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:9 -#: luci-app-snmpd/luasrc/view/snmpd.htm:24 -msgid "Enabled" -msgstr "Aktiv" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:132 -msgid "Exec" -msgstr "Ausführung" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:6 -#: luci-app-snmpd/luasrc/view/snmpd.htm:21 -#: luci-app-snmpd/luasrc/view/snmpd.htm:48 -msgid "General" -msgstr "Allgemein" - -#: luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json:3 -msgid "Grant UCI access for luci-app-snmpd" -msgstr "UCI-Zugriff für luci-app-snmpd gewähren" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:72 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:86 -msgid "Group" -msgstr "Gruppe" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -msgid "Groups help define access methods" -msgstr "Gruppen ermöglichen es, Zugriffsmethoden festzulegen" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:64 -#: luci-app-snmpd/luasrc/view/snmpd.htm:114 -msgid "Interface" -msgstr "Schnittstelle" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:101 -msgid "Level" -msgstr "Ebene" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:22 -msgid "Location" -msgstr "Ort" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:24 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:137 -msgid "Name" -msgstr "Name" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:12 -msgid "Networks" -msgstr "Netzwerke" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:116 -msgid "Notify" -msgstr "Benachrichten" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:136 -msgid "ObjectID" -msgstr "Objekt-Identifikation" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:55 -#: luci-app-snmpd/luasrc/view/snmpd.htm:90 -msgid "Output interface" -msgstr "Ausgabe-Anschluss" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:138 -msgid "Program" -msgstr "Programm" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:85 -#: luci-app-snmpd/luasrc/view/snmpd.htm:89 -msgid "Protocols" -msgstr "Protokolle" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:106 -msgid "Read" -msgstr "Lesen" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:34 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:69 -msgid "Read-only" -msgstr "Nur-Lesen" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:35 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:70 -msgid "Read-write" -msgstr "Lesen/Schreiben" - -#: luci-app-snmpd/luasrc/controller/snmpd.lua:6 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -#: luci-app-snmpd/luasrc/view/snmpd.htm:19 -#: luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json:3 -msgid "SNMPd" -msgstr "SNMPd" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -msgid "SNMPd settings interface (Beta)" -msgstr "SNMPd Einstellungen (Beta)" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:32 -msgid "Server" -msgstr "Server" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:37 -msgid "Source" -msgstr "Quelle" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:19 -msgid "System" -msgstr "System" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:111 -msgid "Write" -msgstr "Schreiben" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:92 -msgid "any" -msgstr "jede" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:104 -msgid "auth" -msgstr "Authentifizierung" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:29 -msgid "com2sec security" -msgstr "com2sec-Sicherheit" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:103 -msgid "noauth" -msgstr "noauth/offen" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:67 -msgid "secname" -msgstr "sec-Name" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:76 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:90 -msgid "version" -msgstr "Version" diff --git a/luci-app-snmpd/po/fr/snmpd.po b/luci-app-snmpd/po/fr/snmpd.po deleted file mode 100644 index 7efb48a422..0000000000 --- a/luci-app-snmpd/po/fr/snmpd.po +++ /dev/null @@ -1,184 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2022-02-19 07:53+0000\n" -"Last-Translator: Weblate Admin \n" -"Language-Team: French \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.6.1\n" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:82 -msgid "Access" -msgstr "Accès" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:81 -#: luci-app-snmpd/luasrc/view/snmpd.htm:122 -msgid "Add" -msgstr "Ajouter" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:66 -#: luci-app-snmpd/luasrc/view/snmpd.htm:116 -msgid "All" -msgstr "Tout" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:139 -msgid "Arguments" -msgstr "Arguments" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:42 -msgid "Community" -msgstr "Communauté" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:23 -msgid "Contact" -msgstr "Contact" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:97 -msgid "Context" -msgstr "Contexte" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:54 -msgid "Domain, IP or network" -msgstr "Domaine, IP ou réseau" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:9 -#: luci-app-snmpd/luasrc/view/snmpd.htm:24 -msgid "Enabled" -msgstr "Activer" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:132 -msgid "Exec" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:6 -#: luci-app-snmpd/luasrc/view/snmpd.htm:21 -#: luci-app-snmpd/luasrc/view/snmpd.htm:48 -msgid "General" -msgstr "Général" - -#: luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json:3 -msgid "Grant UCI access for luci-app-snmpd" -msgstr "Accorder l'accès UCI pour luci-app-snmpd" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:72 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:86 -msgid "Group" -msgstr "Groupe" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -msgid "Groups help define access methods" -msgstr "Les groupes aident à définir les méthodes d'accès" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:64 -#: luci-app-snmpd/luasrc/view/snmpd.htm:114 -msgid "Interface" -msgstr "Interface" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:101 -msgid "Level" -msgstr "Niveau" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:22 -msgid "Location" -msgstr "Localisation" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:24 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:137 -msgid "Name" -msgstr "Nom" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:12 -msgid "Networks" -msgstr "Réseaux" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:116 -msgid "Notify" -msgstr "Notifier" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:136 -msgid "ObjectID" -msgstr "ObjectID" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:55 -#: luci-app-snmpd/luasrc/view/snmpd.htm:90 -msgid "Output interface" -msgstr "Interface de sortie" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:138 -msgid "Program" -msgstr "Programme" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:85 -#: luci-app-snmpd/luasrc/view/snmpd.htm:89 -msgid "Protocols" -msgstr "Protocoles" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:106 -msgid "Read" -msgstr "Lecture" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:34 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:69 -msgid "Read-only" -msgstr "Lecture Seule" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:35 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:70 -msgid "Read-write" -msgstr "Lecture-écriture" - -#: luci-app-snmpd/luasrc/controller/snmpd.lua:6 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -#: luci-app-snmpd/luasrc/view/snmpd.htm:19 -#: luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json:3 -msgid "SNMPd" -msgstr "SNMPd" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -msgid "SNMPd settings interface (Beta)" -msgstr "Paramètres du protocole SNMPd (Beta)" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:32 -msgid "Server" -msgstr "Serveur" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:37 -msgid "Source" -msgstr "Source" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:19 -msgid "System" -msgstr "Système" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:111 -msgid "Write" -msgstr "Ecriture" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:92 -msgid "any" -msgstr "Tout" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:104 -msgid "auth" -msgstr "Authentification" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:29 -msgid "com2sec security" -msgstr "com2sec security" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:103 -msgid "noauth" -msgstr "pas d'authentification" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:67 -msgid "secname" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:76 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:90 -msgid "version" -msgstr "version" diff --git a/luci-app-snmpd/po/it/snmpd.po b/luci-app-snmpd/po/it/snmpd.po deleted file mode 100644 index 5517296ded..0000000000 --- a/luci-app-snmpd/po/it/snmpd.po +++ /dev/null @@ -1,184 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2022-02-21 21:14+0000\n" -"Last-Translator: Deleted User \n" -"Language-Team: Italian \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.10.1\n" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:82 -msgid "Access" -msgstr "Accesso" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:81 -#: luci-app-snmpd/luasrc/view/snmpd.htm:122 -msgid "Add" -msgstr "Aggiungi" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:66 -#: luci-app-snmpd/luasrc/view/snmpd.htm:116 -msgid "All" -msgstr "Tutti" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:139 -msgid "Arguments" -msgstr "Parametri" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:42 -msgid "Community" -msgstr "Community" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:23 -msgid "Contact" -msgstr "Contatto" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:97 -msgid "Context" -msgstr "Contesto" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:54 -msgid "Domain, IP or network" -msgstr "Dominio, IP o rete" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:9 -#: luci-app-snmpd/luasrc/view/snmpd.htm:24 -msgid "Enabled" -msgstr "Abilitato" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:132 -msgid "Exec" -msgstr "Esegui" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:6 -#: luci-app-snmpd/luasrc/view/snmpd.htm:21 -#: luci-app-snmpd/luasrc/view/snmpd.htm:48 -msgid "General" -msgstr "Generale" - -#: luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json:3 -msgid "Grant UCI access for luci-app-snmpd" -msgstr "Concedi l'accesso UCI per luci-app-snmpd" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:72 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:86 -msgid "Group" -msgstr "Gruppo" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -msgid "Groups help define access methods" -msgstr "I gruppi aiutano a definire i metodi di accesso" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:64 -#: luci-app-snmpd/luasrc/view/snmpd.htm:114 -msgid "Interface" -msgstr "Interfaccia" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:101 -msgid "Level" -msgstr "Livello" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:22 -msgid "Location" -msgstr "Sede" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:24 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:137 -msgid "Name" -msgstr "Nome" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:12 -msgid "Networks" -msgstr "Reti" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:116 -msgid "Notify" -msgstr "Notificare" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:136 -msgid "ObjectID" -msgstr "" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:55 -#: luci-app-snmpd/luasrc/view/snmpd.htm:90 -msgid "Output interface" -msgstr "Interfaccia di output" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:138 -msgid "Program" -msgstr "Programma" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:85 -#: luci-app-snmpd/luasrc/view/snmpd.htm:89 -msgid "Protocols" -msgstr "Protocollo" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:106 -msgid "Read" -msgstr "Leggi" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:34 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:69 -msgid "Read-only" -msgstr "Sola lettura" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:35 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:70 -msgid "Read-write" -msgstr "Leggi-Scrivi" - -#: luci-app-snmpd/luasrc/controller/snmpd.lua:6 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -#: luci-app-snmpd/luasrc/view/snmpd.htm:19 -#: luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json:3 -msgid "SNMPd" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -msgid "SNMPd settings interface (Beta)" -msgstr "Interfaccia delle impostazioni SNMPd (Beta)" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:32 -msgid "Server" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:37 -msgid "Source" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:19 -msgid "System" -msgstr "Sistema" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:111 -msgid "Write" -msgstr "Scrittura" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:92 -msgid "any" -msgstr "qualsiasi" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:104 -msgid "auth" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:29 -msgid "com2sec security" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:103 -msgid "noauth" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:67 -msgid "secname" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:76 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:90 -msgid "version" -msgstr "versione" diff --git a/luci-app-snmpd/po/oc/snmpd.po b/luci-app-snmpd/po/oc/snmpd.po deleted file mode 100644 index 10292f0658..0000000000 --- a/luci-app-snmpd/po/oc/snmpd.po +++ /dev/null @@ -1,184 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-08-31 17:15+0000\n" -"Last-Translator: Quentin PAGÈS \n" -"Language-Team: Occitan \n" -"Language: oc\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.4\n" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:82 -msgid "Access" -msgstr "Accès" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:81 -#: luci-app-snmpd/luasrc/view/snmpd.htm:122 -msgid "Add" -msgstr "Ajustar" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:66 -#: luci-app-snmpd/luasrc/view/snmpd.htm:116 -msgid "All" -msgstr "Tot" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:139 -msgid "Arguments" -msgstr "Arguments" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:42 -msgid "Community" -msgstr "Comunautat" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:23 -msgid "Contact" -msgstr "Contacte" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:97 -msgid "Context" -msgstr "Contèxt" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:54 -msgid "Domain, IP or network" -msgstr "Domeni, IP o ret" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:9 -#: luci-app-snmpd/luasrc/view/snmpd.htm:24 -msgid "Enabled" -msgstr "Activat" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:132 -msgid "Exec" -msgstr "Exec" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:6 -#: luci-app-snmpd/luasrc/view/snmpd.htm:21 -#: luci-app-snmpd/luasrc/view/snmpd.htm:48 -msgid "General" -msgstr "General" - -#: luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json:3 -msgid "Grant UCI access for luci-app-snmpd" -msgstr "Acordar l'accès UCI a luci-app-snmpd" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:72 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:86 -msgid "Group" -msgstr "Grop" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -msgid "Groups help define access methods" -msgstr "Los grops ajudan a gerir los metòdes d'accès" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:64 -#: luci-app-snmpd/luasrc/view/snmpd.htm:114 -msgid "Interface" -msgstr "Interfàcia" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:101 -msgid "Level" -msgstr "Nivèl" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:22 -msgid "Location" -msgstr "Emplaçament" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:24 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:137 -msgid "Name" -msgstr "Nom" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:12 -msgid "Networks" -msgstr "Rets" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:116 -msgid "Notify" -msgstr "Notificar" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:136 -msgid "ObjectID" -msgstr "ObjectID" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:55 -#: luci-app-snmpd/luasrc/view/snmpd.htm:90 -msgid "Output interface" -msgstr "Interfàcia de sortida" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:138 -msgid "Program" -msgstr "Programa" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:85 -#: luci-app-snmpd/luasrc/view/snmpd.htm:89 -msgid "Protocols" -msgstr "Protocòls" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:106 -msgid "Read" -msgstr "Lectura" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:34 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:69 -msgid "Read-only" -msgstr "Lectura sola" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:35 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:70 -msgid "Read-write" -msgstr "Lectura-escritura" - -#: luci-app-snmpd/luasrc/controller/snmpd.lua:6 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -#: luci-app-snmpd/luasrc/view/snmpd.htm:19 -#: luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json:3 -msgid "SNMPd" -msgstr "SNMPd" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -msgid "SNMPd settings interface (Beta)" -msgstr "Interfàcia de paramètres SNMPd (Beta)" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:32 -msgid "Server" -msgstr "Servidor" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:37 -msgid "Source" -msgstr "Font" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:19 -msgid "System" -msgstr "Sistèma" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:111 -msgid "Write" -msgstr "Escritura" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:92 -msgid "any" -msgstr "Quin que siá" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:104 -msgid "auth" -msgstr "auth" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:29 -msgid "com2sec security" -msgstr "seguretat com2sec" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:103 -msgid "noauth" -msgstr "noauth" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:67 -msgid "secname" -msgstr "secname" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:76 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:90 -msgid "version" -msgstr "version" diff --git a/luci-app-snmpd/po/templates/snmpd.pot b/luci-app-snmpd/po/templates/snmpd.pot deleted file mode 100644 index 9acfaf5cb7..0000000000 --- a/luci-app-snmpd/po/templates/snmpd.pot +++ /dev/null @@ -1,175 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:82 -msgid "Access" -msgstr "" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:81 -#: luci-app-snmpd/luasrc/view/snmpd.htm:122 -msgid "Add" -msgstr "" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:66 -#: luci-app-snmpd/luasrc/view/snmpd.htm:116 -msgid "All" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:139 -msgid "Arguments" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:42 -msgid "Community" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:23 -msgid "Contact" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:97 -msgid "Context" -msgstr "" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:54 -msgid "Domain, IP or network" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:9 -#: luci-app-snmpd/luasrc/view/snmpd.htm:24 -msgid "Enabled" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:132 -msgid "Exec" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:6 -#: luci-app-snmpd/luasrc/view/snmpd.htm:21 -#: luci-app-snmpd/luasrc/view/snmpd.htm:48 -msgid "General" -msgstr "" - -#: luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json:3 -msgid "Grant UCI access for luci-app-snmpd" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:72 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:86 -msgid "Group" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -msgid "Groups help define access methods" -msgstr "" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:64 -#: luci-app-snmpd/luasrc/view/snmpd.htm:114 -msgid "Interface" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:101 -msgid "Level" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:22 -msgid "Location" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:24 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:137 -msgid "Name" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:12 -msgid "Networks" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:116 -msgid "Notify" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:136 -msgid "ObjectID" -msgstr "" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:55 -#: luci-app-snmpd/luasrc/view/snmpd.htm:90 -msgid "Output interface" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:138 -msgid "Program" -msgstr "" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:85 -#: luci-app-snmpd/luasrc/view/snmpd.htm:89 -msgid "Protocols" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:106 -msgid "Read" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:34 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:69 -msgid "Read-only" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:35 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:70 -msgid "Read-write" -msgstr "" - -#: luci-app-snmpd/luasrc/controller/snmpd.lua:6 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -#: luci-app-snmpd/luasrc/view/snmpd.htm:19 -#: luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json:3 -msgid "SNMPd" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -msgid "SNMPd settings interface (Beta)" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:32 -msgid "Server" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:37 -msgid "Source" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:19 -msgid "System" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:111 -msgid "Write" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:92 -msgid "any" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:104 -msgid "auth" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:29 -msgid "com2sec security" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:103 -msgid "noauth" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:67 -msgid "secname" -msgstr "" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:76 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:90 -msgid "version" -msgstr "" diff --git a/luci-app-snmpd/po/zh_Hans/snmpd.po b/luci-app-snmpd/po/zh_Hans/snmpd.po deleted file mode 100644 index 43c9d8f1db..0000000000 --- a/luci-app-snmpd/po/zh_Hans/snmpd.po +++ /dev/null @@ -1,184 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-05-05 11:40+0000\n" -"Last-Translator: niergouge <1150108426@qq.com>\n" -"Language-Team: Chinese (Simplified) \n" -"Language: zh_Hans\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.1\n" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:82 -msgid "Access" -msgstr "访问" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:81 -#: luci-app-snmpd/luasrc/view/snmpd.htm:122 -msgid "Add" -msgstr "添加" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:66 -#: luci-app-snmpd/luasrc/view/snmpd.htm:116 -msgid "All" -msgstr "所有" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:139 -msgid "Arguments" -msgstr "理由" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:42 -msgid "Community" -msgstr "公共" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:23 -msgid "Contact" -msgstr "联系" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:97 -msgid "Context" -msgstr "语境" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:54 -msgid "Domain, IP or network" -msgstr "域,IP或网络" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:9 -#: luci-app-snmpd/luasrc/view/snmpd.htm:24 -msgid "Enabled" -msgstr "启用" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:132 -msgid "Exec" -msgstr "执行" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:6 -#: luci-app-snmpd/luasrc/view/snmpd.htm:21 -#: luci-app-snmpd/luasrc/view/snmpd.htm:48 -msgid "General" -msgstr "通用" - -#: luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json:3 -msgid "Grant UCI access for luci-app-snmpd" -msgstr "授予UCI访问luci-app-snmpd的权限" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:72 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:86 -msgid "Group" -msgstr "组" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:63 -msgid "Groups help define access methods" -msgstr "定义访问组帮助方法" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:64 -#: luci-app-snmpd/luasrc/view/snmpd.htm:114 -msgid "Interface" -msgstr "接口" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:101 -msgid "Level" -msgstr "级别" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:22 -msgid "Location" -msgstr "位置" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:24 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:137 -msgid "Name" -msgstr "名称" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:12 -msgid "Networks" -msgstr "网络" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:116 -msgid "Notify" -msgstr "通知" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:136 -msgid "ObjectID" -msgstr "对象ID" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:55 -#: luci-app-snmpd/luasrc/view/snmpd.htm:90 -msgid "Output interface" -msgstr "输出接口" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:138 -msgid "Program" -msgstr "程序" - -#: luci-app-snmpd/luasrc/view/snmpd.htm:85 -#: luci-app-snmpd/luasrc/view/snmpd.htm:89 -msgid "Protocols" -msgstr "协议" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:106 -msgid "Read" -msgstr "读取" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:34 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:69 -msgid "Read-only" -msgstr "只读" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:35 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:70 -msgid "Read-write" -msgstr "读写" - -#: luci-app-snmpd/luasrc/controller/snmpd.lua:6 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -#: luci-app-snmpd/luasrc/view/snmpd.htm:19 -#: luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json:3 -msgid "SNMPd" -msgstr "SNMPd设置" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:4 -msgid "SNMPd settings interface (Beta)" -msgstr "SNMPd设置界面(测试版)" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:32 -msgid "Server" -msgstr "服务器" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:37 -msgid "Source" -msgstr "源" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:19 -msgid "System" -msgstr "系统" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:111 -msgid "Write" -msgstr "写" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:92 -msgid "any" -msgstr "任何" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:104 -msgid "auth" -msgstr "认证" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:29 -msgid "com2sec security" -msgstr "com2sec安全" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:103 -msgid "noauth" -msgstr "无认证" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:67 -msgid "secname" -msgstr "第二名称" - -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:76 -#: luci-app-snmpd/luasrc/model/cbi/snmpd.lua:90 -msgid "version" -msgstr "版本" diff --git a/luci-app-snmpd/root/etc/config/snmpd b/luci-app-snmpd/root/etc/config/snmpd deleted file mode 100644 index 09a89474f0..0000000000 --- a/luci-app-snmpd/root/etc/config/snmpd +++ /dev/null @@ -1,91 +0,0 @@ - -config agent - option agentaddress 'UDP:161,UDP6:161' - -config agentx - option agentxsocket '/var/run/agentx.sock' - -config com2sec 'public' - option secname 'ro' - option source 'default' - option community 'public' - -config com2sec 'private' - option secname 'rw' - option source 'localhost' - option community 'private' - -config group 'public_v1' - option group 'public' - option version 'v1' - option secname 'ro' - -config group 'public_v2c' - option group 'public' - option version 'v2c' - option secname 'ro' - -config group 'public_usm' - option group 'public' - option version 'usm' - option secname 'ro' - -config group 'private_v1' - option group 'private' - option version 'v1' - option secname 'rw' - -config group 'private_v2c' - option group 'private' - option version 'v2c' - option secname 'rw' - -config group 'private_usm' - option group 'private' - option version 'usm' - option secname 'rw' - -config view 'all' - option viewname 'all' - option type 'included' - option oid '.1' - -config access 'public_access' - option group 'public' - option context 'none' - option version 'any' - option level 'noauth' - option prefix 'exact' - option read 'all' - option write 'none' - option notify 'none' - -config access 'private_access' - option group 'private' - option context 'none' - option version 'any' - option level 'noauth' - option prefix 'exact' - option read 'all' - option write 'all' - option notify 'all' - -config system - option sysLocation 'office' - option sysContact 'bofh@example.com' - option sysName 'OpenMPTCProuter' - -config exec - option name 'filedescriptors' - option prog '/bin/cat' - option args '/proc/sys/fs/file-nr' - -config engineid - option engineidtype '3' - option engineidnic 'eth0' - -config snmpd 'general' - list network 'lan' - option enabled '0' - option ipv6cpipv4 '1' - diff --git a/luci-app-snmpd/root/etc/init.d/snmpd b/luci-app-snmpd/root/etc/init.d/snmpd deleted file mode 100755 index 39fc714455..0000000000 --- a/luci-app-snmpd/root/etc/init.d/snmpd +++ /dev/null @@ -1,349 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2008 OpenWrt.org -START=50 - -USE_PROCD=1 -PROG="/usr/sbin/snmpd" - -CONFIGFILE="/var/run/snmpd.conf" - -snmpd_agent_add() { - local cfg="$1" - - config_get agentaddress "$cfg" agentaddress - [ -n "$agentaddress" ] || return 0 - echo "agentaddress $agentaddress" >> $CONFIGFILE -} - -snmpd_agentx_add() { - local cfg="$1" - echo "master agentx" >> $CONFIGFILE - config_get agentxsocket "$cfg" agentxsocket - [ -n "$agentxsocket" ] && echo "agentXSocket $agentxsocket" >> $CONFIGFILE -} - -snmpd_system_add() { - local cfg="$1" - config_get syslocation "$cfg" sysLocation - [ -n "$syslocation" ] && echo "sysLocation $syslocation" >> $CONFIGFILE - config_get syscontact "$cfg" sysContact - [ -n "$syscontact" ] && echo "sysContact $syscontact" >> $CONFIGFILE - config_get sysname "$cfg" sysName - [ -n "$sysname" ] && echo "sysName $sysname" >> $CONFIGFILE - config_get sysservice "$cfg" sysService - [ -n "$sysservice" ] && echo "sysService $sysservice" >> $CONFIGFILE - config_get sysdescr "$cfg" sysDescr - [ -n "$sysdescr" ] && echo "sysDescr $sysdescr" >> $CONFIGFILE - config_get sysobjectid "$cfg" sysObjectID - [ -n "$sysobjectid" ] && echo "sysObjectID $sysobjectid" >> $CONFIGFILE -} - -snmpd_com2sec_add() { - local cfg="$1" - config_get secname "$cfg" secname - [ -n "$secname" ] || return 0 - config_get source "$cfg" source - [ -n "$source" ] || return 0 - config_get community "$cfg" community - [ -n "$community" ] || return 0 - echo "com2sec $secname $source $community" >> $CONFIGFILE -} - -snmpd_com2sec6_add() { - local cfg="$1" - config_get secname "$cfg" secname - [ -n "$secname" ] || return 0 - config_get source "$cfg" source - [ -n "$source" ] || return 0 - config_get community "$cfg" community - [ -n "$community" ] || return 0 - echo "com2sec6 $secname $source $community" >> $CONFIGFILE -} - -snmpd_group_add() { - local cfg="$1" - config_get group "$cfg" group - [ -n "$group" ] || return 0 - config_get version "$cfg" version - [ -n "$version" ] || return 0 - config_get secname "$cfg" secname - [ -n "$secname" ] || return 0 - echo "group $group $version $secname" >> $CONFIGFILE -} - -snmpd_view_add() { - local cfg="$1" - config_get viewname "$cfg" viewname - [ -n "$viewname" ] || return 0 - config_get type "$cfg" type - [ -n "$type" ] || return 0 - config_get oid "$cfg" oid - [ -n "$oid" ] || return 0 - # optional mask - config_get mask "$cfg" mask - echo "view $viewname $type $oid $mask" >> $CONFIGFILE -} - -snmpd_access_add() { - local cfg="$1" - config_get group "$cfg" group - [ -n "$group" ] || return 0 - config_get context "$cfg" context - [ -n $context ] || return 0 - [ "$context" == "none" ] && context='""' - config_get version "$cfg" version - [ -n "$version" ] || return 0 - config_get level "$cfg" level - [ -n "$level" ] || return 0 - config_get prefix "$cfg" prefix - [ -n "$prefix" ] || return 0 - config_get read "$cfg" read - [ -n "$read" ] || return 0 - config_get write "$cfg" write - [ -n "$write" ] || return 0 - config_get notify "$cfg" notify - [ -n "$notify" ] || return 0 - echo "access $group $context $version $level $prefix $read $write $notify" >> $CONFIGFILE -} - -snmpd_trap_hostname_add() { - local cfg="$1" - config_get hostname "$cfg" HostName - config_get port "$cfg" Port - config_get community "$cfg" Community - config_get type "$cfg" Type - echo "$type $hostname $community $port" >> $CONFIGFILE -} - -snmpd_trap_ip_add() { - local cfg="$1" - config_get host_ip "$cfg" HostIP - config_get port "$cfg" Port - config_get community "$cfg" Community - config_get type "$cfg" Type - echo "$type $host_ip $community $port" >> $CONFIGFILE -} - -snmpd_access_default_add() { - local cfg="$1" - config_get mode "$cfg" Mode - config_get community "$cfg" CommunityName - config_get oidrestrict "$cfg" RestrictOID - config_get oid "$cfg" RestrictedOID - echo -n "$mode $community default" >> $CONFIGFILE - [ "$oidrestrict" == "yes" ] && echo " $oid" >> $CONFIGFILE - [ "$oidrestrict" == "no" ] && echo "" >> $CONFIGFILE -} - -snmpd_access_HostName_add() { - local cfg="$1" - config_get hostname "$cfg" HostName - config_get mode "$cfg" Mode - config_get community "$cfg" CommunityName - config_get oidrestrict "$cfg" RestrictOID - config_get oid "$cfg" RestrictedOID - echo -n "$mode $community $hostname" >> $CONFIGFILE - [ "$oidrestrict" == "yes" ] && echo " $oid" >> $CONFIGFILE - [ "$oidrestrict" == "no" ] && echo "" >> $CONFIGFILE -} - -snmpd_access_HostIP_add() { - local cfg="$1" - config_get host_ip "$cfg" HostIP - config_get ip_mask "$cfg" IPMask - config_get mode "$cfg" Mode - config_get community "$cfg" CommunityName - config_get oidrestrict "$cfg" RestrictOID - config_get oid "$cfg" RestrictedOID - echo -n "$mode $community $host_ip/$ip_mask" >> $CONFIGFILE - [ "$oidrestrict" == "yes" ] && echo " $oid" >> $CONFIGFILE - [ "$oidrestrict" == "no" ] && echo "" >> $CONFIGFILE -} - -snmpd_pass_add() { - local cfg="$1" - local pass='pass' - - config_get miboid "$cfg" miboid - [ -n "$miboid" ] || return 0 - config_get prog "$cfg" prog - [ -n "$prog" ] || return 0 - config_get_bool persist "$cfg" persist 0 - [ $persist -ne 0 ] && pass='pass_persist' - config_get priority "$cfg" priority - priority=${priority:+-p $priority} - echo "$pass $priority $miboid $prog" >> $CONFIGFILE -} - -snmpd_exec_add() { - local cfg="$1" - - config_get name "$cfg" name - [ -n "$name" ] || return 0 - config_get prog "$cfg" prog - [ -n "$prog" ] || return 0 - config_get args "$cfg" args - config_get miboid "$cfg" miboid - echo "exec $miboid $name $prog $args" >> $CONFIGFILE -} - -snmpd_disk_add() { - local cfg="$1" - local disk='disk' - - config_get partition "$cfg" partition - [ -n "$partition" ] || return 0 - config_get size "$cfg" size - [ -n "$size" ] || return 0 - echo "$disk $partition $size" >> $CONFIGFILE -} - -snmpd_engineid_add() { - local cfg="$1" - - config_get engineid "$cfg" engineid - [ -n "$engineid" ] && echo "engineID $engineid" >> $CONFIGFILE - config_get engineidtype "$cfg" engineidtype - [ "$engineidtype" -ge 1 -a "$engineidtype" -le 3 ] && \ - echo "engineIDType $engineidtype" >> $CONFIGFILE - config_get engineidnic "$cfg" engineidnic - [ -n "$engineidnic" ] && echo "engineIDNic $engineidnic" >> $CONFIGFILE -} - -snmpd_sink_add() { - local cfg="$1" - local section="$2" - local community - local port - local host - - config_get host "$cfg" host - [ -n "section" -a -n "$host" ] || return 0 - # optional community - config_get community "$cfg" community - # optional port - config_get port "$cfg" port - port=${port:+:$port} - echo "$section $host$port $community" >> $CONFIGFILE -} - -append_parm() { - local section="$1" - local option="$2" - local switch="$3" - local _loctmp - config_get _loctmp "$section" "$option" - [ -z "$_loctmp" ] && return 0 - echo "$switch $_loctmp" >> $CONFIGFILE -} - -append_authtrapenable() { - local section="$1" - local option="$2" - local switch="$3" - local _loctmp - config_get_bool _loctmp "$section" "$option" - [ -z "$_loctmp" ] && return 0 - [ "$_loctmp" -gt 0 ] && echo "$switch $_loctmp" >> $CONFIGFILE -} - -snmpd_setup_fw_rules() { - local net="$1" - local zone - - zone=$(fw3 -q network "$net" 2>/dev/null) - - local handled_zone - for handled_zone in $HANDLED_SNMP_ZONES; do - [ "$handled_zone" = "$zone" ] && return - done - - json_add_object "" - json_add_string type rule - json_add_string src "$zone" - json_add_string proto udp - json_add_string dest_port 161 - json_add_string target ACCEPT - json_close_object - - HANDLED_SNMP_ZONES="$HANDLED_SNMP_ZONES $zone" -} - -start_service() { - [ -f "$CONFIGFILE" ] && rm -f "$CONFIGFILE" - - config_load snmpd - - config_get_bool snmp_enabled general enabled 1 - [ "$snmp_enabled" -eq 0 ] && return - - procd_open_instance - - config_foreach snmpd_agent_add agent - config_foreach snmpd_agentx_add agentx - config_foreach snmpd_system_add system - config_foreach snmpd_com2sec_add com2sec - if [ "$(uci -q get snmpd.general.ipv6cpipv4)" = "1" ]; then - config_foreach snmpd_com2sec6_add com2sec - else - config_foreach snmpd_com2sec6_add com2sec6 - fi - config_foreach snmpd_group_add group - config_foreach snmpd_view_add view - config_foreach snmpd_access_add access - config_foreach snmpd_trap_hostname_add trap_HostName - config_foreach snmpd_trap_ip_add trap_HostIP - config_foreach snmpd_access_default_add access_default - config_foreach snmpd_access_HostName_add access_HostName - config_foreach snmpd_access_HostIP_add access_HostIP - config_foreach snmpd_pass_add pass - config_foreach snmpd_exec_add exec - config_foreach snmpd_disk_add disk - config_foreach snmpd_engineid_add engineid - append_parm trapcommunity community trapcommunity - config_foreach snmpd_sink_add trapsink trapsink - config_foreach snmpd_sink_add trap2sink trap2sink - config_foreach snmpd_sink_add informsink informsink - append_authtrapenable authtrapenable enable authtrapenable - append_parm v1trapaddress host v1trapaddress - append_parm trapsess trapsess trapsess - - procd_set_param command $PROG -Lf /dev/null -f - procd_set_param file $CONFIGFILE - procd_set_param respawn - - for iface in $(ls /sys/class/net 2>/dev/null); do - procd_append_param netdev "$iface" - done - - procd_open_data - - json_add_array firewall - config_list_foreach general network snmpd_setup_fw_rules - json_close_array - - procd_close_data - - procd_close_instance -} - -stop_service() { - [ -f "$CONFIGFILE" ] && rm -f "$CONFIGFILE" - procd_set_config_changed firewall -} - -service_triggers(){ - local script=$(readlink "$initscript") - local name=$(basename ${script:-$initscript}) - - procd_open_trigger - procd_add_raw_trigger "interface.*" 2000 /etc/init.d/$name reload - procd_close_trigger - - procd_add_reload_trigger 'snmpd' -} - -service_started() { - [ "$snmp_enabled" -eq 0 ] && return - procd_set_config_changed firewall -} diff --git a/luci-app-snmpd/root/etc/uci-defaults/4400-snmpd b/luci-app-snmpd/root/etc/uci-defaults/4400-snmpd deleted file mode 100755 index 8c6f6a547b..0000000000 --- a/luci-app-snmpd/root/etc/uci-defaults/4400-snmpd +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -if [ "$(uci -q get snmpd.general.network)" = "" ]; then - uci -q batch <<-EOF >/dev/null - add_list snmpd.general.network=lan - set snmpd.@system[0].sysName="OpenMPTCProuter" - set snmpd.general.enabled=0 - commit snmpd - EOF -fi - -uci -q batch <<-EOF >/dev/null - delete ucitrack.@snmpd[-1] - add ucitrack snmpd - set ucitrack.@snmpd[-1].init=snmpd - commit ucitrack -EOF - -rm -f /tmp/luci-indexcache -exit 0 \ No newline at end of file diff --git a/luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json b/luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json deleted file mode 100644 index 771c4021a8..0000000000 --- a/luci-app-snmpd/root/usr/share/luci/menu.d/luci-app-snmpd.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "admin/network/snmpd": { - "title": "SNMPd", - "order": 91, - "action": { - "type": "cbi", - "path": "snmpd" - }, - "depends": { - "acl": [ "luci-app-snmpd" ] - } - } -} diff --git a/luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json b/luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json deleted file mode 100644 index 1fc168524c..0000000000 --- a/luci-app-snmpd/root/usr/share/rpcd/acl.d/luci-app-snmpd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "luci-app-snmpd": { - "description": "Grant UCI access for luci-app-snmpd", - "read": { - "uci": [ "snmpd" ] - }, - "write": { - "uci": [ "snmpd" ] - } - } -} \ No newline at end of file From 3ce139d0511c143e1c4d4a0cfd756d0be19333f0 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 15:04:10 +0100 Subject: [PATCH 09/10] Fix glorytun-udp package --- glorytun-udp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glorytun-udp/Makefile b/glorytun-udp/Makefile index f2520df5da..79743fe5e5 100644 --- a/glorytun-udp/Makefile +++ b/glorytun-udp/Makefile @@ -48,7 +48,7 @@ define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) init $(1)/etc/init.d/$(PKG_NAME) $(INSTALL_DIR) $(1)/etc/config - touch $(1)/etc/config/glorytun + touch $(1)/etc/config/glorytun-udp endef $(eval $(call BuildPackage,$(PKG_NAME))) From 5b5805c1b93ac62b89295625d42eeeab87dc66d6 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Fri, 6 Dec 2024 19:31:31 +0100 Subject: [PATCH 10/10] Fix Glorytun-UDP cnfig --- glorytun-udp/Makefile | 2 +- .../etc/config/glorytun-udp => glorytun-udp/glorytun-udp.config | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename luci-app-glorytun-udp/root/etc/config/glorytun-udp => glorytun-udp/glorytun-udp.config (100%) diff --git a/glorytun-udp/Makefile b/glorytun-udp/Makefile index 79743fe5e5..acacab7939 100644 --- a/glorytun-udp/Makefile +++ b/glorytun-udp/Makefile @@ -48,7 +48,7 @@ define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) init $(1)/etc/init.d/$(PKG_NAME) $(INSTALL_DIR) $(1)/etc/config - touch $(1)/etc/config/glorytun-udp + $(INSTALL_DATA) glorytun-udp.config $(1)/etc/config/glorytun-udp endef $(eval $(call BuildPackage,$(PKG_NAME))) diff --git a/luci-app-glorytun-udp/root/etc/config/glorytun-udp b/glorytun-udp/glorytun-udp.config similarity index 100% rename from luci-app-glorytun-udp/root/etc/config/glorytun-udp rename to glorytun-udp/glorytun-udp.config