From: RISCi_ATOM Date: Tue, 30 Mar 2021 02:56:42 +0000 (-0400) Subject: luci: Add luci-app-unbound to base X-Git-Tag: v1.5.5-20210401~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0c397a6cda00eeadc66615f75fa76043d4b16eb4;p=librecmc%2Flibrecmc.git luci: Add luci-app-unbound to base --- diff --git a/package/luci/applications/luci-app-unbound/Makefile b/package/luci/applications/luci-app-unbound/Makefile new file mode 100644 index 0000000000..6b43adab3f --- /dev/null +++ b/package/luci/applications/luci-app-unbound/Makefile @@ -0,0 +1,14 @@ +# +# Copyright (C) 2008-2014 The LuCI Team +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=Unbound Recursive DNS Resolver Configuration +LUCI_DEPENDS:=+unbound-daemon + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/package/luci/applications/luci-app-unbound/luasrc/controller/unbound.lua b/package/luci/applications/luci-app-unbound/luasrc/controller/unbound.lua new file mode 100644 index 0000000000..32879cb9f2 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/controller/unbound.lua @@ -0,0 +1,229 @@ +-- Copyright 2008 Steven Barth +-- Copyright 2008 Jo-Philipp Wich +-- Copyright 2017 Eric Luehrsen +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.unbound", package.seeall) + + +function index() + local fs = require "nixio.fs" + local ucl = luci.model.uci.cursor() + local valman = ucl:get_first("unbound", "unbound", "manual_conf") + + + if not fs.access("/etc/config/unbound") then + return + end + + + -- Expanded View + entry({"admin", "services", "unbound"}, + firstchild(), _("Recursive DNS")).dependent = false + + -- UCI Tab(s) + entry({"admin", "services", "unbound", "configure"}, + cbi("unbound/configure"), _("Unbound"), 10) + + + if (valman == "0") then + entry({"admin", "services", "unbound", "zones"}, + arcombine(cbi("unbound/zones"), cbi("unbound/zone-details")), + _("Zones"), 15).leaf = true + end + + + -- Status Tab(s) + entry({"admin", "services", "unbound", "status"}, + firstchild(), _("Status"), 20) + + entry({"admin", "services", "unbound", "status", "syslog"}, + call("QuerySysLog"), _("Log"), 50).leaf = true + + + if fs.access("/usr/sbin/unbound-control") then + -- Require unbound-control to execute + entry({"admin", "services", "unbound", "status", "statistics"}, + call("QueryStatistics"), _("Statistics"), 10).leaf = true + + entry({"admin", "services", "unbound", "status", "localdata"}, + call("QueryLocalData"), _("Local Data"), 20).leaf = true + + entry({"admin", "services", "unbound", "status", "localzone"}, + call("QueryLocalZone"), _("Local Zones"), 30).leaf = true + + entry({"admin", "services", "unbound", "status", "dumpcache"}, + call("QueryDumpCache"), _("DNS Cache"), 40).leaf = true + else + entry({"admin", "services", "unbound", "status", "statistics"}, + call("ShowEmpty"), _("Statistics"), 10).leaf = true + end + + + -- Raw File Tab(s) + entry({"admin", "services", "unbound", "files"}, + firstchild(), _("Files"), 30) + + + if (valman == "0") then + entry({"admin", "services", "unbound", "files", "uci"}, + form("unbound/uciedit"), _("Edit: UCI"), 5).leaf = true + + entry({"admin", "services", "unbound", "files", "base"}, + call("ShowUnboundConf"), _("Show: Unbound"), 10).leaf = true + + else + entry({"admin", "services", "unbound", "files", "base"}, + form("unbound/manual"), _("Edit: Unbound"), 10).leaf = true + end + + + entry({"admin", "services", "unbound", "files", "server"}, + form("unbound/server"), _("Edit: Server"), 20).leaf = true + + entry({"admin", "services", "unbound", "files", "extended"}, + form("unbound/extended"), _("Edit: Extended"), 30).leaf = true + + + if fs.access("/var/lib/unbound/dhcp.conf") then + entry({"admin", "services", "unbound", "files", "dhcp"}, + call("ShowDHCPConf"), _("Show: DHCP"), 40).leaf = true + end + + + if fs.access("/var/lib/unbound/adb_list.overall") then + entry({"admin", "services", "unbound", "files", "adblock"}, + call("ShowAdblock"), _("Show: Adblock"), 50).leaf = true + end +end + + +function ShowEmpty() + local lclhead = "Unbound Control" + local lcldesc = luci.i18n.translate( + "This could display more statistics with the unbound-control package.") + + luci.template.render("unbound/show-empty", + {heading = lclhead, description = lcldesc}) +end + + +function QuerySysLog() + local lcldata = luci.util.exec("logread -e 'unbound'") + local lcldesc = luci.i18n.translate( + "This shows syslog filtered for events involving Unbound.") + + luci.template.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) +end + + +function QueryStatistics() + local lcldata = luci.util.exec( + "unbound-control -c /var/lib/unbound/unbound.conf stats_noreset") + + local lcldesc = luci.i18n.translate( + "This shows Unbound self reported performance statistics.") + + luci.template.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) +end + + +function QueryLocalData() + local lcldata = luci.util.exec( + "unbound-control -c /var/lib/unbound/unbound.conf list_local_data") + + local lcldesc = luci.i18n.translate( + "This shows Unbound 'local-data:' entries from default, .conf, or control.") + + luci.template.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) +end + + +function QueryLocalZone() + local lcldata = luci.util.exec( + "unbound-control -c /var/lib/unbound/unbound.conf list_local_zones") + + local lcldesc = luci.i18n.translate( + "This shows Unbound 'local-zone:' entries from default, .conf, or control.") + + luci.template.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) +end + + +function QueryDumpCache() + local tp = require "luci.template" + local tr = require "luci.i18n" + local lcldesc + local lcldata = luci.util.exec( + "unbound-control -c /var/lib/unbound/unbound.conf dump_cache") + + + if #lcldata > 262144 then + lcldesc = tr.translate( + "Unbound cache is too large to display in LuCI.") + + tp.render("unbound/show-empty", + {heading = "", description = lcldesc}) + + else + lcldesc = tr.translate( + "This shows 'ubound-control dump_cache' for auditing records including DNSSEC.") + + tp.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) + end + +end + + +function ShowUnboundConf() + local unboundfile = "/var/lib/unbound/unbound.conf" + local lcldata = nixio.fs.readfile(unboundfile) + local lcldesc = luci.i18n.translate( + "This shows '" .. unboundfile .. "' generated from UCI configuration.") + + luci.template.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) +end + + +function ShowDHCPConf() + local dhcpfile = "/var/lib/unbound/dhcp.conf" + local lcldata = nixio.fs.readfile(dhcpfile) + local lcldesc = luci.i18n.translate( + "This shows '" .. dhcpfile .. "' list of hosts from DHCP hook scripts.") + + luci.template.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) +end + + +function ShowAdblock() + local fs = require "nixio.fs" + local tp = require "luci.template" + local tr = require "luci.i18n" + local adblockfile = "/var/lib/unbound/adb_list.overall" + local lcldata, lcldesc + + + if fs.stat(adblockfile).size > 262144 then + lcldesc = tr.translate( + "Adblock domain list is too large to display in LuCI.") + + tp.render("unbound/show-empty", + {heading = "", description = lcldesc}) + + else + lcldata = fs.readfile(adblockfile) + lcldesc = tr.translate( + "This shows '" .. adblockfile .. "' list of adblock domains." ) + + tp.render("unbound/show-textbox", + {heading = "", description = lcldesc, content = lcldata}) + end +end + diff --git a/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua new file mode 100644 index 0000000000..206d7e6da1 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua @@ -0,0 +1,342 @@ +-- Copyright 2008 Steven Barth +-- Copyright 2016 Eric Luehrsen +-- Copyright 2016 Dan Luedtke +-- Licensed to the public under the Apache License 2.0. + +local m1, s1 +local ena, mcf, lci, lsv +local rlh, rpv, vld, nvd, eds, prt, tlm +local ctl, dlk, dom, dty, lfq, wfq, exa +local dp6, d64, pfx, qry, qrs +local pro, tgr, rsc, rsn, ag2, stt +local rpn, din, ath + +local ut = require "luci.util" +local sy = require "luci.sys" +local ht = require "luci.http" +local ds = require "luci.dispatcher" +local ucl = luci.model.uci.cursor() +local valman = ucl:get_first("unbound", "unbound", "manual_conf") +local dhcplk = ucl:get_first("unbound", "unbound", "dhcp_link") +local lstrig = ucl:get_first("dhcp", "odhcpd", "leasetrigger") + +m1 = Map("unbound") +s1 = m1:section(TypedSection, "unbound", translate("Recursive DNS"), + translatef("Unbound (NLnet Labs)" + .. " is a validating, recursive, and caching DNS resolver" + .. " (help).", + "https://www.unbound.net/", + "https://github.com/openwrt/packages/blob/master/net/unbound/files/README.md")) + +s1.addremove = false +s1.anonymous = true + +if (valman == "0") and (dhcplk == "odhcpd") and (lstrig ~= "/usr/lib/unbound/odhcpd.sh") then + m1.message = translatef( "Note: local DNS is configured to look at odhpcd, " + .. "but odhpcd UCI lease trigger is incorrectly set: ") + .. "dhcp.odhcpd.leasetrigger='" .. lstrig .. "'" +end + +--LuCI, Unbound, or Not +s1:tab("basic", translate("Basic")) + + +if (valman == "0") then + -- Not in manual configuration mode; show UCI + s1:tab("advanced", translate("Advanced")) + s1:tab("DHCP", translate("DHCP")) + s1:tab("resource", translate("Resource")) +end + + +--Basic Tab, unconditional pieces +ena = s1:taboption("basic", Flag, "enabled", translate("Enable Unbound"), + translate("Enable the initialization scripts for Unbound")) +ena.rmempty = false + +mcf = s1:taboption("basic", Flag, "manual_conf", translate("Manual Conf"), + translate("Skip UCI and use /etc/unbound/unbound.conf")) +mcf.rmempty = false + + +if (valman == "0") then + -- Not in manual configuration mode; show UCI + --Basic Tab + lsv = s1:taboption("basic", Flag, "localservice", + translate("Local Service"), + translate("Accept queries only from local subnets")) + lsv.rmempty = false + + vld = s1:taboption("basic", Flag, "validator", + translate("Enable DNSSEC"), + translate("Enable the DNSSEC validator module")) + vld.rmempty = false + + nvd = s1:taboption("basic", Flag, "validator_ntp", + translate("DNSSEC NTP Fix"), + translate("Break the loop where DNSSEC needs NTP and NTP needs DNS")) + nvd.optional = true + nvd:depends("validator", true) + + prt = s1:taboption("basic", Value, "listen_port", + translate("Listening Port"), + translate("Choose Unbounds listening port")) + prt.datatype = "port" + prt.placeholder = "53" + + --Avanced Tab + rlh = s1:taboption("advanced", Flag, "rebind_localhost", + translate("Filter Localhost Rebind"), + translate("Protect against upstream response of 127.0.0.0/8")) + rlh.rmempty = false + + rpv = s1:taboption("advanced", ListValue, "rebind_protection", + translate("Filter Private Rebind"), + translate("Protect against upstream responses within local subnets")) + rpv:value("0", translate("No Filter")) + rpv:value("1", translate("Filter Private Address")) + rpv:value("2", translate("Filter Entire Subnet")) + rpv.rmempty = false + + d64 = s1:taboption("advanced", Flag, "dns64", translate("Enable DNS64"), + translate("Enable the DNS64 module")) + d64.rmempty = false + + pfx = s1:taboption("advanced", Value, "dns64_prefix", + translate("DNS64 Prefix"), + translate("Prefix for generated DNS64 addresses")) + pfx.datatype = "ip6addr" + pfx.placeholder = "64:ff9b::/96" + pfx.optional = true + pfx:depends("dns64", true) + + din = s1:taboption("advanced", DynamicList, "domain_insecure", + translate("Domain Insecure"), + translate("List domains to bypass checks of DNSSEC")) + din:depends("validator", true) + + ag2 = s1:taboption("advanced", Value, "root_age", + translate("Root DSKEY Age"), + translate("Limit days between RFC5011 copies to reduce flash writes")) + ag2.datatype = "and(uinteger,min(1),max(99))" + ag2:value("3", "3") + ag2:value("9", "9 ("..translate("default")..")") + ag2:value("12", "12") + ag2:value("24", "24") + ag2:value("99", "99 ("..translate("never")..")") + + tgr = s1:taboption("advanced", Value, "trigger_interface", + translate("Trigger Networks"), + translate("Networks that may trigger Unbound to reload (avoid wan6)")) + tgr.template = "cbi/network_netlist" + tgr.widget = "checkbox" + tgr.rmempty = true + tgr.cast = "string" + tgr.nocreate = true + + --DHCP Tab + dlk = s1:taboption("DHCP", ListValue, "dhcp_link", + translate("DHCP Link"), + translate("Link to supported programs to load DHCP into DNS")) + dlk:value("none", translate("(none)")) + dlk:value("dnsmasq", "dnsmasq") + dlk:value("odhcpd", "odhcpd") + dlk.rmempty = false + + dp6 = s1:taboption("DHCP", Flag, "dhcp4_slaac6", + translate("DHCPv4 to SLAAC"), + translate("Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)")) + dp6.optional = true + dp6:depends("dhcp_link", "odhcpd") + + dom = s1:taboption("DHCP", Value, "domain", + translate("Local Domain"), + translate("Domain suffix for this router and DHCP clients")) + dom.placeholder = "lan" + dom.optional = true + + dty = s1:taboption("DHCP", ListValue, "domain_type", + translate("Local Domain Type"), + translate("How to treat queries of this local domain")) + dty.optional = true + dty:value("deny", translate("Denied (nxdomain)")) + dty:value("refuse", translate("Refused")) + dty:value("static", translate("Static (local only)")) + dty:value("transparent", translate("Transparent (local/global)")) + dty:depends("dhcp_link", "none") + dty:depends("dhcp_link", "odhcpd") + + lfq = s1:taboption("DHCP", ListValue, "add_local_fqdn", + translate("LAN DNS"), + translate("How to enter the LAN or local network router in DNS")) + lfq.optional = true + lfq:value("0", translate("No Entry")) + lfq:value("1", translate("Hostname, Primary Address")) + lfq:value("2", translate("Hostname, All Addresses")) + lfq:value("3", translate("Host FQDN, All Addresses")) + lfq:value("4", translate("Interface FQDN, All Addresses")) + lfq:depends("dhcp_link", "none") + lfq:depends("dhcp_link", "odhcpd") + + wfq = s1:taboption("DHCP", ListValue, "add_wan_fqdn", + translate("WAN DNS"), + translate("Override the WAN side router entry in DNS")) + wfq.optional = true + wfq:value("0", translate("Use Upstream")) + wfq:value("1", translate("Hostname, Primary Address")) + wfq:value("2", translate("Hostname, All Addresses")) + wfq:value("3", translate("Host FQDN, All Addresses")) + wfq:value("4", translate("Interface FQDN, All Addresses")) + wfq:depends("dhcp_link", "none") + wfq:depends("dhcp_link", "odhcpd") + + exa = s1:taboption("DHCP", ListValue, "add_extra_dns", + translate("Extra DNS"), + translate("Use extra DNS entries found in /etc/config/dhcp")) + exa.optional = true + exa:value("0", translate("Ignore")) + exa:value("1", translate("Host Records")) + exa:value("2", translate("Host/MX/SRV RR")) + exa:value("3", translate("Host/MX/SRV/CNAME RR")) + exa:depends("dhcp_link", "none") + exa:depends("dhcp_link", "odhcpd") + + --TODO: dnsmasq needs to not reference resolve-file and get off port 53. + + --Resource Tuning Tab + ctl = s1:taboption("resource", ListValue, "unbound_control", + translate("Unbound Control App"), + translate("Enable access for unbound-control")) + ctl.rmempty = false + ctl:value("0", translate("No Remote Control")) + ctl:value("1", translate("Local Host, No Encryption")) + ctl:value("2", translate("Local Host, Encrypted")) + ctl:value("3", translate("Local Subnet, Encrypted")) + ctl:value("4", translate("Local Subnet, Static Encryption")) + + pro = s1:taboption("resource", ListValue, "protocol", + translate("Recursion Protocol"), + translate("Chose the IP versions used upstream and downstream")) + pro:value("default", translate("Default")) + pro:value("ip4_only", translate("IP4 Only")) + pro:value("ip6_local", translate("IP4 All and IP6 Local")) + pro:value("ip6_only", translate("IP6 Only*")) + pro:value("ip6_prefer", translate("IP6 Preferred")) + pro:value("mixed", translate("IP4 and IP6")) + pro.rmempty = false + + rsc = s1:taboption("resource", ListValue, "resource", + translate("Memory Resource"), + translate("Use menu System/Processes to observe any memory growth")) + rsc:value("default", translate("Default")) + rsc:value("tiny", translate("Tiny")) + rsc:value("small", translate("Small")) + rsc:value("medium", translate("Medium")) + rsc:value("large", translate("Large")) + rsc.rmempty = false + + rsn = s1:taboption("resource", ListValue, "recursion", + translate("Recursion Strength"), + translate("Recursion activity affects memory growth and CPU load")) + rsn:value("default", translate("Default")) + rsn:value("passive", translate("Passive")) + rsn:value("aggressive", translate("Aggressive")) + rsn.rmempty = false + + qry = s1:taboption("resource", Flag, "query_minimize", + translate("Query Minimize"), + translate("Break down query components for limited added privacy")) + qry.optional = true + qry:depends("recursion", "passive") + qry:depends("recursion", "aggressive") + + qrs = s1:taboption("resource", Flag, "query_min_strict", + translate("Strict Minimize"), + translate("Strict version of 'query minimize' but it can break DNS")) + qrs.optional = true + qrs:depends("query_minimize", true) + + eds = s1:taboption("resource", Value, "edns_size", + translate("EDNS Size"), + translate("Limit extended DNS packet size")) + eds.datatype = "and(uinteger,min(512),max(4096))" + eds.placeholder = "1280" + + tlm = s1:taboption("resource", Value, "ttl_min", + translate("TTL Minimum"), + translate("Prevent excessively short cache periods")) + tlm.datatype = "and(uinteger,min(0),max(1200))" + tlm.placeholder = "120" + + rtt = s1:taboption("resource", Value, "rate_limit", + translate("Query Rate Limit"), + translate("Prevent client query overload; zero is off")) + rtt.datatype = "and(uinteger,min(0),max(5000))" + rtt.placeholder = "0" + + stt = s1:taboption("resource", Flag, "extended_stats", + translate("Extended Statistics"), + translate("Extended statistics are printed from unbound-control")) + stt.rmempty = false + +else + ag2 = s1:taboption("basic", Value, "root_age", + translate("Root DSKEY Age"), + translate("Limit days between RFC5011 copies to reduce flash writes")) + ag2.datatype = "and(uinteger,min(1),max(99))" + ag2:value("3", "3") + ag2:value("9", "9 ("..translate("default")..")") + ag2:value("12", "12") + ag2:value("24", "24") + ag2:value("99", "99 ("..translate("never")..")") + + tgr = s1:taboption("basic", Value, "trigger_interface", + translate("Trigger Networks"), + translate("Networks that may trigger Unbound to reload (avoid wan6)")) + tgr.template = "cbi/network_netlist" + tgr.widget = "checkbox" + tgr.rmempty = true + tgr.cast = "string" + tgr.nocreate = true +end + + +function ena.cfgvalue(self, section) + return sy.init.enabled("unbound") and self.enabled or self.disabled +end + + +function ena.write(self, section, value) + if (value == "1") then + sy.init.enable("unbound") + sy.call("/etc/init.d/unbound start >/dev/null 2>&1") + + else + sy.call("/etc/init.d/unbound stop >/dev/null 2>&1") + sy.init.disable("unbound") + end + + + return Flag.write(self, section, value) +end + + +function m1.on_commit(self) + if sy.init.enabled("unbound") then + -- Restart Unbound with configuration + sy.call("/etc/init.d/unbound restart >/dev/null 2>&1") + + else + sy.call("/etc/init.d/unbound stop >/dev/null 2>&1") + end +end + + +function m1.on_apply(self) + -- reload the page because some options hide + ht.redirect(ds.build_url("admin", "services", "unbound", "configure")) +end + + +return m1 + diff --git a/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua new file mode 100644 index 0000000000..6c5e8c23ef --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua @@ -0,0 +1,33 @@ +-- Copyright 2016 Eric Luehrsen +-- Licensed to the public under the Apache License 2.0. + +local m4, s4, frm +local filename = "/etc/unbound/unbound_ext.conf" +local fs = require "nixio.fs" +local ut = require "luci.util" + +m4 = SimpleForm("editing", nil) +m4:append(Template("unbound/css-editing")) +m4.submit = translate("Save") +m4.reset = false +s4 = m4:section(SimpleSection, "", + translatef( + "Edit clauses such as 'forward-zone:' for 'include: " .. filename .. "'")) + +frm = s4:option(TextValue, "data") +frm.datatype = "string" +frm.rows = 20 + + +function frm.cfgvalue() + return fs.readfile(filename) or "" +end + + +function frm.write(self, section, data) + return fs.writefile(filename, ut.trim(data:gsub("\r\n", "\n"))) +end + + +return m4 + diff --git a/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua new file mode 100644 index 0000000000..317c23fda0 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua @@ -0,0 +1,33 @@ +-- Copyright 2016 Eric Luehrsen +-- Licensed to the public under the Apache License 2.0. + +local m2, s2, frm +local filename = "/etc/unbound/unbound.conf" +local fs = require "nixio.fs" +local ut = require "luci.util" + +m2 = SimpleForm("editing", nil) +m2:append(Template("unbound/css-editing")) +m2.submit = translate("Save") +m2.reset = false +s2 = m2:section(SimpleSection, "", + translatef( + "Edit '" .. filename .. "' when you do not use UCI.")) + +frm = s2:option(TextValue, "data") +frm.datatype = "string" +frm.rows = 20 + + +function frm.cfgvalue() + return fs.readfile(filename) or "" +end + + +function frm.write(self, section, data) + return fs.writefile(filename, ut.trim(data:gsub("\r\n", "\n"))) +end + + +return m2 + diff --git a/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua new file mode 100644 index 0000000000..5cef2a67b0 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua @@ -0,0 +1,33 @@ +-- Copyright 2016 Eric Luehrsen +-- Licensed to the public under the Apache License 2.0. + +local m3, s3, frm +local filename = "/etc/unbound/unbound_srv.conf" +local fs = require "nixio.fs" +local ut = require "luci.util" + +m3 = SimpleForm("editing", nil) +m3:append(Template("unbound/css-editing")) +m3.submit = translate("Save") +m3.reset = false +s3 = m3:section(SimpleSection, "", + translatef( + "Edit 'server:' clause options for 'include: " .. filename .. "'")) + +frm = s3:option(TextValue, "data") +frm.datatype = "string" +frm.rows = 20 + + +function frm.cfgvalue() + return fs.readfile(filename) or "" +end + + +function frm.write(self, section, data) + return fs.writefile(filename, ut.trim(data:gsub("\r\n", "\n"))) +end + + +return m3 + diff --git a/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua new file mode 100644 index 0000000000..f1e1d842a1 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua @@ -0,0 +1,37 @@ +-- Copyright 2016 Eric Luehrsen +-- Licensed to the public under the Apache License 2.0. + +local m6, s6, frm +local filename = "/etc/config/unbound" +local fs = require "nixio.fs" +local ut = require "luci.util" + +m6 = SimpleForm("editing", nil) +m6:append(Template("unbound/css-editing")) +m6.submit = translate("Save") +m6.reset = false +s6 = m6:section(SimpleSection, "", + translatef("Edit '" .. filename .. "' " + .. "and recipes can be found in OpenWrt " + .. "Guides " + .. "and Github.", + "https://openwrt.org/docs/guide-user/services/dns/unbound", + "https://github.com/openwrt/packages/blob/master/net/unbound/files/README.md")) + +frm = s6:option(TextValue, "data") +frm.datatype = "string" +frm.rows = 20 + + +function frm.cfgvalue() + return fs.readfile(filename) or "" +end + + +function frm.write(self, section, data) + return fs.writefile(filename, ut.trim(data:gsub("\r\n", "\n"))) +end + + +return m6 + diff --git a/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua new file mode 100644 index 0000000000..f4a6ca6ddd --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua @@ -0,0 +1,103 @@ +-- Copyright 2018 Eric Luehrsen +-- Licensed to the public under the Apache License 2.0. + +local sy = require "luci.sys" +local ds = require "luci.dispatcher" +local hp = require "luci.http" +local m7, s7 +local ena, flb, zty, znm, srv, rlv, tlu +local prt, tlp, tli, url + +arg[1] = arg[1] or "" +m7 = Map("unbound") +m7.redirect = ds.build_url("admin/services/unbound/zones") + + +if (arg[1] == "") then + hp.redirect(m7.redirect) + return + +else + s7 = m7:section(NamedSection, arg[1], "zone", + translatef("Directed Zone"), + translatef("Edit a forward, stub, or zone-file-cache zone " + .. "for Unbound to use instead of recursion.")) + + s7.anonymous = true + s7.addremove = false + + ena = s7:option(Flag, "enabled", translate("Enabled"), + translate("Enable this directed zone")) + ena.rmempty = false + + flb = s7:option(Flag, "fallback", translate("Fall Back"), + translate("Allow open recursion when record not in zone")) + flb.rmempty = false + + zty = s7:option(ListValue, "zone_type", translate("Zone Type")) + zty:value("auth_zone", translate("Authoritative (zone file)")) + zty:value("stub_zone", translate("Stub (forced recursion)")) + zty:value("forward_zone", translate("Forward (simple handoff)")) + zty.rmempty = false + + znm = s7:option(DynamicList, "zone_name", translate("Zone Names"), + translate("Zone (Domain) names included in this zone combination")) + znm.placeholder="new.example.net." + + srv = s7:option(DynamicList, "server", translate("Servers"), + translate("Servers for this zone; see README.md for optional form")) + srv.placeholder="192.0.2.53" + + ast = s7:option(ListValue, "dns_assist", translate("DNS Plugin"), + translate("Check for local program to allow forward to localhost")) + ast:value("none", translate("(none)")) + ast:value("bind", "bind") + ast:value("dnsmasq", "dnsmasq") + ast:value("ipset-dns", "ipset-dns") + ast:value("nsd", "nsd") + + rlv = s7:option(Flag, "resolv_conf", translate("Use 'resolv.conf.auto'"), + translate("Forward to upstream nameservers (ISP)")) + rlv:depends("zone_type", "forward_zone") + + tlu = s7:option(Flag, "tls_upstream", translate("DNS over TLS"), + translate("Connect to servers using TLS")) + tlu:depends("zone_type", "forward_zone") + + prt = s7:option(Value, "port", translate("Server Port"), + translate("Port servers will receive queries on")) + prt:depends("tls_upstream", false) + prt.datatype = "port" + prt.placeholder="53" + + tlp = s7:option(Value, "tls_port", translate("Server TLS Port"), + translate("Port servers will receive queries on")) + tlp:depends("tls_upstream", true) + tlp.datatype = "port" + tlp.placeholder="853" + + tli = s7:option(Value, "tls_index", translate("TLS Name Index"), + translate("Domain name to verify TLS certificate")) + tli:depends("tls_upstream", true) + tli.placeholder="dns.example.net" + + url = s7:option(Value, "url_dir", translate("Zone Download URL"), + translate("Directory only part of URL")) + url:depends("zone_type", "auth_zone") + url.placeholder="https://www.example.net/dl/zones/" +end + + +function m7.on_commit(self) + if sy.init.enabled("unbound") then + -- Restart Unbound with configuration + sy.call("/etc/init.d/unbound restart >/dev/null 2>&1") + + else + sy.call("/etc/init.d/unbound stop >/dev/null 2>&1") + end +end + + +return m7 + diff --git a/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua new file mode 100644 index 0000000000..3a13c23df9 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua @@ -0,0 +1,232 @@ +-- Copyright 2018 Eric Luehrsen +-- Licensed to the public under the Apache License 2.0. + +local m5, s5 +local ztype, zones, servers, fallback, enabled + +local fs = require "nixio.fs" +local ut = require "luci.util" +local sy = require "luci.sys" +local ds = require "luci.dispatcher" +local resolvfile = "/tmp/resolv.conf.auto" +local logerr = ut.exec("logread -e 'unbound.*error.*ssl library'") + +m5 = Map("unbound") +s5 = m5:section(TypedSection, "zone", "Zones", + translatef("Organize directed forward, stub, and authoritative zones" + .. " (help).", + "https://www.unbound.net/", + "https://github.com/openwrt/packages/blob/master/net/unbound/files/README.md")) + +s5.addremove = true +s5.anonymous = true +s5.sortable = true +s5.template = "cbi/tblsection" +s5.extedit = ds.build_url("admin/services/unbound/zones/%s") + +ztype = s5:option(DummyValue, "DummyType", translate("Type")) +ztype.rawhtml = true + +zones = s5:option(DummyValue, "DummyZones", translate("Zones")) +zones.rawhtml = true + +servers = s5:option(DummyValue, "DummyServers", translate("Servers")) +servers.rawhtml = true + +fallback = s5:option(Flag, "fallback", translate("Fallback")) +fallback.rmempty = false + +enabled = s5:option(Flag, "enabled", translate("Enable")) +enabled.rmempty = false + + +if logerr and (#logerr > 0) then + logerr = logerr:sub((1 + #logerr - math.min(#logerr, 250)), #logerr) + m5.message = translatef( "Note: SSL/TLS library is missing an API. " + .. "Please review syslog. >> logread ... " .. logerr ) +end + + +function s5.create(self, section) + created = TypedSection.create(self, section) +end + + +function s5.parse(self, ...) + TypedSection.parse(self, ...) +end + + +function ztype.cfgvalue(self, s) + -- Format a meaningful tile for the Zone Type column + local itxt = self.map:get(s, "zone_type") + local itls = self.map:get(s, "tls_upstream") + + + if itxt and itxt:match("forward") then + if itls and (itls == "1") then + return translate("Forward TLS") + + else + return translate("Forward") + end + + elseif itxt and itxt:match("stub") then + return translate("Recurse") + + elseif itxt and itxt:match("auth") then + return translate("AXFR") + + else + return translate("Undefined") + end +end + + +function zones.cfgvalue(self, s) + -- Format a meaningful sentence for the Zones viewed column + local xtxt, otxt + local itxt = self.map:get(s, "zone_name") + local itype = self.map:get(s, "zone_type") + + + for xtxt in ut.imatch(itxt) do + if (xtxt == ".") then + -- zone_name lists + xtxt = translate("(root)") + end + + + if otxt and (#otxt > 0) then + otxt = otxt .. ", %s" % xtxt + + else + otxt = "%s" % xtxt + end + end + + + if otxt and (#otxt > 0) then + if itype and itype:match("forward") then + -- from zone_type create a readable hint for the action + otxt = translate("accept upstream results for ") .. otxt + + elseif itype and itype:match("stub") then + otxt = translate("select recursion for ") .. otxt + + elseif itype and itype:match("auth") then + otxt = translate("prefetch zone files for ") .. otxt + + else + otxt = translate("unknown action for ") .. otxt + end + + + return otxt + + else + return "(empty)" + end +end + + +function servers.cfgvalue(self, s) + -- Format a meaningful sentence for the Servers (and URL) column + local xtxt, otxt, rtxt, found + local itxt = self.map:get(s, "server") + local iurl = self.map:get(s, "url_dir") + local itype = self.map:get(s, "zone_type") + local itls = self.map:get(s, "tls_upstream") + local iidx = self.map:get(s, "tls_index") + local irslv = self.map:get(s, "resolv_conf") + + + for xtxt in ut.imatch(itxt) do + if otxt and (#otxt > 0) then + -- bundle and make pretty the server list + otxt = otxt .. ", %s" % xtxt + + else + otxt = "%s" % xtxt + end + end + + + if otxt and (#otxt > 0) then + otxt = translate("use nameservers ") .. otxt + end + + + if otxt and (#otxt > 0) + and itls and (itls == "1") + and iidx and (#iidx > 0) then + -- show TLS certificate name index if provided + otxt = otxt .. translatef( + " with default certificate for %s", iidx) + end + + + if iurl and (#iurl > 0) and itype and itype:match("auth") then + if otxt and (#otxt > 0) then + -- include optional URL filed for auth-zone: type + otxt = otxt .. translatef(", and try %s", iurl) + + else + otxt = translatef("download from %s", iurl) + end + end + + + if irslv and (irslv == "1") and itype and itype:match("forward") then + for xtxt in ut.imatch(fs.readfile(resolvfile)) do + if xtxt:match("nameserver") then + found = true + + elseif (found == true) then + if rtxt and (#rtxt > 0) then + -- fetch name servers from resolv.conf + rtxt = rtxt .. ", %s" % xtxt + + else + rtxt = "%s" % xtxt + end + + + found = false + end + end + + + if otxt and (#otxt > 0) and rtxt and (#rtxt > 0) then + otxt = otxt .. translatef( + ", and %s entries ", resolvfile) .. rtxt + + elseif rtxt and (#rtxt > 0) then + otxt = translatef( + "use %s nameservers ", resolvfile) .. rtxt + end + end + + + if otxt and (#otxt > 0) then + return otxt + + else + return "(empty)" + end +end + + +function m5.on_commit(self) + if sy.init.enabled("unbound") then + -- Restart Unbound with configuration + sy.call("/etc/init.d/unbound restart >/dev/null 2>&1") + + else + sy.call("/etc/init.d/unbound stop >/dev/null 2>&1") + end +end + + +return m5 + diff --git a/package/luci/applications/luci-app-unbound/luasrc/view/unbound/css-editing.htm b/package/luci/applications/luci-app-unbound/luasrc/view/unbound/css-editing.htm new file mode 100644 index 0000000000..44d09378c3 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/view/unbound/css-editing.htm @@ -0,0 +1,8 @@ + + diff --git a/package/luci/applications/luci-app-unbound/luasrc/view/unbound/show-empty.htm b/package/luci/applications/luci-app-unbound/luasrc/view/unbound/show-empty.htm new file mode 100644 index 0000000000..87d6cc68cb --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/view/unbound/show-empty.htm @@ -0,0 +1,5 @@ +<%+header%> +

<%=heading:pcdata()%>

+

<%=description:pcdata()%>

+<%+footer%> + diff --git a/package/luci/applications/luci-app-unbound/luasrc/view/unbound/show-textbox.htm b/package/luci/applications/luci-app-unbound/luasrc/view/unbound/show-textbox.htm new file mode 100644 index 0000000000..c0a7d133dc --- /dev/null +++ b/package/luci/applications/luci-app-unbound/luasrc/view/unbound/show-textbox.htm @@ -0,0 +1,8 @@ +<%+header%> +

<%=heading:pcdata()%>

+

<%=description:pcdata()%>

+
+ +
+<%+footer%> + diff --git a/package/luci/applications/luci-app-unbound/po/bg/unbound.po b/package/luci/applications/luci-app-unbound/po/bg/unbound.po new file mode 100644 index 0000000000..4afb07f219 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/bg/unbound.po @@ -0,0 +1,766 @@ +msgid "" +msgstr "" +"Language: bg\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/ca/unbound.po b/package/luci/applications/luci-app-unbound/po/ca/unbound.po new file mode 100644 index 0000000000..eadf09fbcd --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/ca/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-08 13:04+0000\n" +"Last-Translator: BenRoura \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5.1\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avançat" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Activa" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Activat" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Desar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Estat" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/cs/unbound.po b/package/luci/applications/luci-app-unbound/po/cs/unbound.po new file mode 100644 index 0000000000..43de4d5665 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/cs/unbound.po @@ -0,0 +1,772 @@ +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-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Pokročilé" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Výchozí" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Povolit" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "Povolit DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "Povolit DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Povolit Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Zapnuto" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Ignorovat" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Protokol" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Střední" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Uložit" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Statistiky" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Stav" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Typ" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zóny" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "výchozí" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "nikdy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/de/unbound.po b/package/luci/applications/luci-app-unbound/po/de/unbound.po new file mode 100644 index 0000000000..732ce544e6 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/de/unbound.po @@ -0,0 +1,776 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-09 02:45+0000\n" +"Last-Translator: Zocker1012 \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.5-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(keiner)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr ", und %s Einträge" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr ", und versuche %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "Nur Abfragen von lokalen Subnetzen akzeptieren" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "Die Adblock-Domain-Liste ist zu groß, um in LuCI angezeigt zu werden." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Fortgeschritten" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "Aggressiv" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" +"Offene Rekursion zulassen, wenn sich der Datensatz nicht in der Zone befindet" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "Autorisierend (Zonendatei)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "Basis" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" +"Aufschlüsseln der Abfragekomponenten für begrenzten zusätzlichen Datenschutz" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "Unterbrechen der Schleife, wo DNSSEC NTP benötigt und NTP DNS benötigt" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "Prüft auf lokales Programm, um Weiterleitung an Localhost zu erlauben" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "Wähle den Unbounds Listening Port" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "Wählen Sie die vor- und nachgelagerten IP-Versionen aus" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "Verbinde zu Servern mit TLS Protokoll" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "DHCP Verbindung" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 nach SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "DNS Zwischenspeicher" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "DNS Plugin" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "DNS über TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "DNS64 Präfix" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "DNSSEC NTP Korrektur" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Standardeinstellung" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "Abgelehnt ( nxdomain )" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "Gerichtete Zone" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "Verzeichnis nur Teil der URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "Unsichere Domäne" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "Domänenname zum Verifizieren des TLS-Zertifikats" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "Domänensuffix für diesen Router und DHCP Clients" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "EDNS Größe" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Bearbeiten '" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "Bearbeite 'Server:' Optionenklausel für 'enthält:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" +"Bearbeiten Sie eine forward-, stub- oder zone-file Zwischenspeicher Zone, " +"damit Unbound anstelle einer Rekursion verwendet werden kann." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "Bearbeite: Erweitert" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Bearbeite: Server" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Bearbeite: UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "Bearbeite: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Aktivieren" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "DNS64 aktivieren" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "DNSSEC aktivieren" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Unbound aktivieren" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "Aktiviere Zugriff für Unbound-Kontrolle" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "Aktiviere das DNS64 Modul" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "Aktiviere das DNSSEC Prüf-Modul" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "Aktiviere die Initialisierungsskripte für Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Aktiviert" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Dateien" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Weitergeleitet" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "Hostname, alle Adressen" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "Hostname, primäre Adresse" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Ignorieren" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "Groß" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Protokoll" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "Manuelle Konfiguration" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Mittel" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "Kein Eintrag" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "Kein Filter" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "Passiv" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Speichern" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "Klein" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Statistiken" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "Winzig" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Typ" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "Undefiniert" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zonen" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "Standardeinstellung" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "nie" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/el/unbound.po b/package/luci/applications/luci-app-unbound/po/el/unbound.po new file mode 100644 index 0000000000..1480337522 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/el/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-01 16:02+0000\n" +"Last-Translator: ChriZathens \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 4.5-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "προχωρημένο" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Ενεργοποίηση" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Ενεργοποιήθηκε" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Αρχεία" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Κατάσταση" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/en/unbound.po b/package/luci/applications/luci-app-unbound/po/en/unbound.po new file mode 100644 index 0000000000..509f613e86 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/en/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-31 01:41+0000\n" +"Last-Translator: Stephen Maundrell \n" +"Language-Team: English \n" +"Language: en\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.1-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Enabled" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/es/unbound.po b/package/luci/applications/luci-app-unbound/po/es/unbound.po new file mode 100644 index 0000000000..fd7ae2091e --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/es/unbound.po @@ -0,0 +1,801 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2020-08-07 03:34+0000\n" +"Last-Translator: Álvaro Fernández Rojas \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 4.2-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(ninguno)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "y %s entradas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr ", y prueba %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "Aceptar consultas solo de subredes locales" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" +"La lista de dominios de Adblock es demasiado grande para mostrarla en LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avanzado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "Agresivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "Permitir recursión abierta cuando el registro no está en la zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "Autoritativo (archivo de zona)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "Básico" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" +"Desglose los componentes de consulta para una privacidad adicional limitada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "Rompa el ciclo donde DNSSEC necesita NTP y NTP necesita DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "Verifique el programa local para permitir el reenvío a localhost" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "Escoge el puerto de escucha Unbounds" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" +"Elija las versiones de IP utilizadas en sentido ascendente y descendente" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "Conectarse a los servidores utilizando TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "Enlace DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 a SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "Caché DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "Complemento DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "DNS sobre TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "Prefijo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "Fijado de DNSSEC NTP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Predeterminado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "Denegado (nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "Zona dirigida" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "Directorio solo parte de la URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "Dominio inseguro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "Nombre de dominio para verificar el certificado TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "Sufijo de dominio para este enrutador y clientes DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "Tamaño EDNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Editar '" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "Edite 'servidor:' opciones de la cláusula para 'incluir:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" +"Edite una zona de reenvío, código auxiliar o zona de caché de archivos para " +"que se pueda usar Unbound en lugar de recursión." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "Edite las cláusulas como 'forward-zone:' para 'incluir:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "Edite: Extendido" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Edite: Servidor" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Edite: UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "Edite: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Activar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "Activar DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "Activar DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Activar Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "Activar el acceso para el control ilimitado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "Activar el módulo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "Activar el módulo validador DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "Activar los scripts de inicialización para Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "Activar esta zona dirigida" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Activado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "Estadisticas extendidas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "Las estadísticas extendidas se imprimen desde el control independiente" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "DNS extra" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "Retroceder" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "Retroceder" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Archivos" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "Filtrar toda la subred" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "Filtrar Localhost Rebind" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "Filtrar dirección privada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "Filtrar encuadernado privado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Reenviar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "Reenviar (simple transferencia)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "Reenviar TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "Reenviar a servidores de nombres ascendentes (ISP)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "FQDN de host, todas las direcciones" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "Registros de host" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "Host/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "Host/MX/SRV/CNAME RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "Nombre de host, todas las direcciones" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "Nombre de host, dirección principal" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "Cómo ingresar al enrutador de red local o LAN en DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "Como tratar las consultas de este dominio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "IP4 Todos y IP6 Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "Sólo IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 y IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "Sólo IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "IP6 preferido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Ignorar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "Interfaz FQDN, todas las direcciones" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "DNS de LAN" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "Grande" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" +"Limite los días entre copias RFC5011 para reducir las grabaciones flash" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "Limitar el tamaño del paquete DNS extendido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "Enlace a programas compatibles para cargar DHCP en DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "Lista de dominios para eludir las comprobaciones de DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "Puerto de escucha" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "Datos locales" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "Dominio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "Tipo de dominio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "Host local, encriptado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "Host local, sin cifrado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "Servicio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "Subred local, encriptada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "Subred local, cifrado estático" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "Zonas locales" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Registro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "Conf. Manual" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Medio" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "Recurso de memoria" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "Redes que pueden activar Unbound para recargar (evitar wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "Sin entrada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "Sin filtro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "Sin control remoto" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" +"Nota: a la biblioteca SSL/TLS le falta una API. Por favor revise syslog. >> " +"logread ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" +"Nota: el DNS local está configurado para mirar odhpcd, pero el disparador de " +"arrendamiento odhpcd UCI está configurado incorrectamente:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" +"Organice los reenvios dirigidos, colilla , y zonas autoritarias (ayuda)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "Anular la entrada del enrutador del lado WAN en DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "Pasivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "Los servidores de puertos recibirán consultas en" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "Prefijo para direcciones DNS64 generadas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "Prevenir la sobrecarga de consultas del cliente; cero está apagado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "Prevenir períodos de caché excesivamente cortos" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "Proteger contra la respuesta ascendente de 127.0.0.0/8" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "Proteger contra respuestas ascendentes dentro de subredes locales" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "Consulta minimizada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "Límite de velocidad de consulta" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "Recuento" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "Protocolo de recursion" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "Fuerza de recursión" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" +"La actividad de recursión afecta el crecimiento de la memoria y la carga de " +"la CPU" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "DNS recursivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "Rechazado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "Recurso" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "Root DSKEY Age" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Guardar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "Puerto del servidor" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "Puerto del servidor TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "Servidores" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "Servidores para esta zona; ver README.md para la forma opcional" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "Mostrar: Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "Mostrar: DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "Mostrar: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "Omita UCI y use /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "Pequeño" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "Estático (solo local)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Estadísticas" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Estado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "Estricto minimizar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "Versión estricta de 'consulta minimizada' pero puede romper DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "Talón (recursión forzada)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "Índice de nombres TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "TTL mínimo" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" +"Esto podría mostrar más estadísticas con el paquete de control ilimitado." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "Esta muestra '" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" +"Esto muestra 'ubound-control dump_cache' para auditar registros que incluyen " +"DNSSEC." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" +"Esto muestra las entradas de Unbound 'local-data:' de forma predeterminada, ." +"conf o control." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" +"Esto muestra las entradas de Unbound 'local-zone:' de los valores " +"predeterminados, .conf o control." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" +"Esto muestra las estadísticas de rendimiento autoinformadas de Unbound." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "Esto muestra syslog filtrado para eventos relacionados con Unbound." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "Minúsculo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "Transparente (local/global)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "Redes de disparo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Tipo" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" +"Unbound (NLnet Labs) es un sistema de " +"resolución de DNS de validación, recursivo y almacenamiento en caché (ayuda)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "Aplicación de control de Unbound" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "Caché de Unbound es demasiado grande para mostrarla en LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "Indefinido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "Utilice 'resolv.conf.auto'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "Utilice DHCPv4 MAC para descubrir hosts IPA SLAAC (EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "Usar Upstream" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "Use entradas DNS extra que se encuentran en /etc/config/dhcp" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" +"Usa el menú Sistema/Procesos para observar cualquier crecimiento de memoria" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "DNS WAN" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "Nombres de zona (dominio) incluidos en esta combinación de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "URL de descarga de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "Nombres de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "Tipo de zona" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "aceptar resultados anteriores para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "predeterminado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "descargar desde %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "nunca" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "archivos de zona de búsqueda previa para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "seleccione recursion para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "acción desconocida para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "usar los nombres de servidores %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "usar servidores de nombres" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "con certificado predeterminado para %s" diff --git a/package/luci/applications/luci-app-unbound/po/fr/unbound.po b/package/luci/applications/luci-app-unbound/po/fr/unbound.po new file mode 100644 index 0000000000..802039f1ad --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/fr/unbound.po @@ -0,0 +1,808 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-03 01:50+0000\n" +"Last-Translator: ButterflyOfFire \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.5\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(aucun)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr ", et %s entrees" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr ", et essaie %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "Acceptez uniquement les requêtes provenant de sous-réseaux locaux" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" +"La liste des domaines Adblock est trop importante pour être affichée dans " +"LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avancé" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "Agressif" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" +"Permettre une récursion ouverte lorsque l'enregistrement n'est pas dans la " +"zone" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "Faisant autorité (fichier de zone)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "Basique" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" +"Décomposer les composants de la requête pour une plus grande confidentialité" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "Rompre la boucle où DNSSEC a besoin de NTP et NTP a besoin de DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "Choisir le Port d'écoute" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "Choisir les versions IP utilisées en amont et en aval" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "Se connecter à des serveurs en TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "DHCP Liaison" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 à SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "Cache DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "DNS à travers TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "Préfixe DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "DNSSEC NTP Correctif" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Par Défaut" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "Refusé (nxdomaine)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "Zone dirigée" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "Répertoire seule partie de l'URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "Domaine non-securisé" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "Nom de domaine pour vérifier le certificat TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "Suffixe de domaine pour ce routeur et les clients DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "Taille EDNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Modifier '" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "Modifier les options de la clause \"server :\" pour \"include\" :" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +#, fuzzy +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" +"Modifiez une zone de cache de transfert, de talon ou de fichier de zone pour " +"que Unbound puisse l'utiliser à la place de la récursion." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "Modifiez les clauses telles que \"forwardzone :\" pour \"include :" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "Édition : Étendue" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Edition : Serveur" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Edit : UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "Modifier : Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Activer" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "Activer DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "Activer DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Activer Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "Permettre l'accès pour unbound-control" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "Autorisé DNS64 module" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "Autorisé le DNSSEC validator module" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "Autorisé initialisation scripts pour Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "Activer directed zone" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Activé" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "Statistiques Etendue" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "Statistiques étendues venant de unbound-control" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "Extra DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "Repli" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "Repli" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Fichiers" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "Filtrer l'ensemble du sous-réseau" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "Filtrer Localhost Rebind" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "Filtrer l'adresse privée" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "Filtrer Private Rebind" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Transférer" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "Transférer (transfert simple)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "Transfert TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "Transfert vers les serveurs de noms en amont (ISP)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "Hôte FQDN, Toutes les adresses" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "Hôtes Enregistrées" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "Hôte/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "Hôte/MX/SRV/CNAME RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "Hostname, Toutes les adresses" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "Hostname, Adresse principale" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "Comment entrer dans le LAN ou routeur réseau local dans DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "Comment traiter les requêtes de ce domaine local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "IP4 Tous et IP6 Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "IP4 uniquement" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IPv4 et IPv6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "IP6 uniquement*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "IP6 Préféré" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Ignorer" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "Interface FQDN, Toutes les adresses" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "LAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +#, fuzzy +msgid "Large" +msgstr "Large" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" +"Limiter les jours entre les copies du RFC5011 pour réduire les écritures " +"flash" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "Limiter la taille étendue du paquet DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "Lien vers des programmes pris en charge pour charger DHCP dans DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "Liste des domaines pour contourner les contrôles de DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "Port d'écoute" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "Données locales" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "Domaine local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "Local Type De Domaine" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "Hôte local, crypté" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "Hôte Local, Pas De Cryptage" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "Local Service" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "Subnet local, crypté" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "Sous-réseau local, cryptage statique" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "Zones locales" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Journal" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "Manuel Conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Moyen" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "Ressource mémoire" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" +"Réseaux susceptibles de déclencher le rechargement de Unbound (éviter wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "Pas d'entrée" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "Aucun filtre" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "Pas de contrôle à distance" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" +"Remarque : il manque une API à la librairie SSL/TLS. Veuillez consulter le " +"syslog. >> lire le journal ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" +"Remarque : le DNS local est configuré pour regarder odhpcd, mais le " +"déclencheur de bail UCI odhpcd est mal défini :" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +#, fuzzy +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" +"Organisez des zones dirigées transfert, stub et des zones faisant autorité " +"(help)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "Remplacer l'entrée du routeur côté WAN dans le DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "Passif" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "Les serveurs de port recevront des requêtes sur" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "Préfixe pour les adresses DNS64 générées" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "Empêcher la surcharge des requêtes client ; zéro signifie désactivé" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "Prévenir les périodes de cache excessivement courtes" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "Protéger contre une réponse en amont de 127.0.0.0/8" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "Protéger contre les réactions en amont au sein des sous-réseaux locaux" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "Minimiser la requête" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "Limite du taux des requêtes" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "Récurse" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "Protocole de récursion" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "Force de récursion" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" +"L'activité de récursivité affecte la croissance de la mémoire et la charge " +"du CPU" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "DNS récursif" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "Refusé" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "Ressource" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "Root DSKEY Age" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Enregistrer" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "Port serveur" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "Serveur TLS Port" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "Serveurs" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" +"Serveurs pour cette zone ; voir README.md pour le formulaire facultatif" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "Afficher : Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "Afficher : DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "Afficher : Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "Ignorez l'UCI et utilisez /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "Petit" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "Statique (local uniquement)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Statistiques" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "État" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "Strict Minimize" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" +"Version stricte de «minimiser les requêtes» mais cela peut casser le DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "Stub (récursion forcée)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "TLS Index des noms" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "TTL Minimum" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" +"Cela pourrait afficher plus de statistiques avec le paquet de contrôle non " +"lié." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "Ceci montre '" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" +"Il s'agit d'un \"dump_cache\" de contrôle en amont pour l'audit des " +"enregistrements, y compris les DNSSEC." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" +"Cette page affiche les entrées non liées de \"données locales\" : par " +"défaut, .conf ou control." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" +"Cela montre Unbound 'zone locale:' entrées par défaut, .conf, ou le contrôle." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "Affiche les statistiques de performance de Unbound." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "Ceci montre le syslog filtré pour les événements impliquant Unbound." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "Petit" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "Transparent (local/global)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "Déclenchement des Réseaux" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Type" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" +"Unbound (NLnet Labs) est un résolveur " +"DNS de validation, récursif et de mise en cache (help)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "Unbound Controle App" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "Unbound cache est trop grande pour afficher dans LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "Non défini" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "Utiliser « resolv.conf.auto »" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "Utiliser DHCPv4 MAC pour découvrir les hôtes IP6 SLAAC (EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "Utiliser upstream" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" +"Utiliser les entrées DNS supplémentaires trouvées dans /etc/config/dhcp" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" +"Utilisez le menu Système/Processus pour observer toute augmentation de la " +"mémoire" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "Zone (Domaine) noms inclus dans cette zone de combinaison" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "URL Téléchargement de Zone" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "Noms de Zone" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "Zone Type" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zones" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "accepter les résultats en amont pour" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "Par défaut" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "télécharger à partir de %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "jamais" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "Précharger les fichiers de zone pour" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "sélectionner la récursion pour" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "action inconnue pour" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "utiliser %s serveurs de noms" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "utiliser les serveurs de noms" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "avec certificat par défaut pour %s" diff --git a/package/luci/applications/luci-app-unbound/po/he/unbound.po b/package/luci/applications/luci-app-unbound/po/he/unbound.po new file mode 100644 index 0000000000..e76d0a2e42 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/he/unbound.po @@ -0,0 +1,766 @@ +msgid "" +msgstr "" +"Language: he\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/hi/unbound.po b/package/luci/applications/luci-app-unbound/po/hi/unbound.po new file mode 100644 index 0000000000..da52e26299 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/hi/unbound.po @@ -0,0 +1,766 @@ +msgid "" +msgstr "" +"Language: hi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/hu/unbound.po b/package/luci/applications/luci-app-unbound/po/hu/unbound.po new file mode 100644 index 0000000000..6821101e02 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/hu/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-28 22:27+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-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Speciális" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Alapértelmezett" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Engedélyezés" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Engedélyezve" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Fájlok" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Továbbítás" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Mellőzés" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Napló" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Közepes" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Mentés" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Statisztikák" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Állapot" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Típus" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zónák" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "alapértelmezett" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/it/unbound.po b/package/luci/applications/luci-app-unbound/po/it/unbound.po new file mode 100644 index 0000000000..a07bae2e11 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/it/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-25 15:04+0000\n" +"Last-Translator: bovirus \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.5\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Abilita" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Inglese (sviluppatore)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Salva" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Stato" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/ja/unbound.po b/package/luci/applications/luci-app-unbound/po/ja/unbound.po new file mode 100644 index 0000000000..8d1bf879f6 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/ja/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-07 07:33+0000\n" +"Last-Translator: Satoru Yoshida \n" +"Language-Team: Japanese \n" +"Language: ja\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.5-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(ルート)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "詳細設定" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "DNSSEC が NTP を必要とし、NTP が DNS を必要とするループを断ち切る" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "アップストリームとダウンストリームで使用される IP バージョンを選択" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "TLS を使用してサーバーへ接続" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "DNS キャッシュ" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "DNS プラグイン" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "DNS over TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "デフォルト" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "有効化" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "DNS64 を有効にする" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "DNSSEC を有効にする" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Unbound を有効にする" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "DNS64 モジュールを有効にする" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "有効" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "ファイル" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "転送" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "IP4 のみ" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 及び IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "IP6 のみ*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "IP6 優先" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "無視" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "ローカル データ" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "ローカル ドメイン" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "ローカル サービス" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "ログ" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "中" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "受動的" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "生成された DNS64 アドレスのプレフィックス" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "127.0.0.0/8 のアップストリーム応答から保護" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "ローカル サブネット内のアップストリーム応答から保護" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "リソース" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "保存" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "サーバーポート" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "サーバー TLS ポート" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "サーバー" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "表示: Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "表示: DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "UCI をスキップして /etc/unbound/unbound.conf を使用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "統計" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "ステータス" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "タイプ" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "未定義" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "'resolv.conf.auto' を使用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "アップストリームを使用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "ゾーン名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "ゾーン" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "デフォルト" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "%s からダウンロード" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "%s ネームサーバーを使用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "ネームサーバーを使用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/ko/unbound.po b/package/luci/applications/luci-app-unbound/po/ko/unbound.po new file mode 100644 index 0000000000..94e5e0184c --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/ko/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-19 00:53+0000\n" +"Last-Translator: EP45 \n" +"Language-Team: Korean \n" +"Language: ko\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.0.2-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "활성화" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/mr/unbound.po b/package/luci/applications/luci-app-unbound/po/mr/unbound.po new file mode 100644 index 0000000000..6812d8d6d8 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/mr/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-07 09:18+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-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "डीफॉल्ट" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "सक्षम करा" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "सक्षम केले" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "नोंद" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "स्थिती" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "प्रकार" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "डीफॉल्ट" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/ms/unbound.po b/package/luci/applications/luci-app-unbound/po/ms/unbound.po new file mode 100644 index 0000000000..b38c1f93d8 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/ms/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-16 23:25+0000\n" +"Last-Translator: Pusak Hitam \n" +"Language-Team: Malay \n" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Lanjutan" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/nb_NO/unbound.po b/package/luci/applications/luci-app-unbound/po/nb_NO/unbound.po new file mode 100644 index 0000000000..3d09b7e5ba --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/nb_NO/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-09 06:26+0000\n" +"Last-Translator: Allan Nordhøy \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5.1\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avansert" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Forvalg" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Aktivert" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Lagre" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Type" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/pl/unbound.po b/package/luci/applications/luci-app-unbound/po/pl/unbound.po new file mode 100644 index 0000000000..b3bb2df65e --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/pl/unbound.po @@ -0,0 +1,795 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-26 01:23+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.2-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(brak)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr ", i %s wpisy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr ", i spróbuj %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "Akceptuj zapytania tylko z lokalnych podsieci" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" +"Lista domen Adblock jest zbyt duża, aby można było ją wyświetlić w LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Zaawansowane" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "Agresywny" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "Zezwól na otwartą rekurencję, gdy zapis nie znajduje się w strefie" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "Autorytatywny (plik strefy)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "Podstawowe" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "Podział elementów zapytania dla ograniczonej prywatności" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "Przerwij pętlę, w której DNSSEC potrzebuje NTP, a NTP potrzebuje DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "Sprawdź, czy lokalny program pozwala na przekazywanie do localhost" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "Wybierz port nasłuchiwania bez ograniczeń" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "Wybór wersji IP używanych do wysyłania i pobierania" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "Połącz się z serwerami za pomocą TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "Łącze DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 do SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "Pamięć podręczna DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "Wtyczka DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "DNS przez TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "Prefiks DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "Poprawka DNSSEC NTP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Domyślny" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "Odmowa (nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "Strefa kierowana" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "Katalog tylko części adresu URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "Domena niezabezpieczona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "Nazwa domeny do weryfikacji certyfikatu TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "Sufiks domeny dla tego routera i klientów DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "Rozmiar EDNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Edytuj" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "Edytuj 'server:' opcje klauzuli 'include:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" +"Edytuj strefę forward, stub lub zone-file-cache dla Unbound do użycia " +"zamiast rekurencji." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "Edytuj klauzule, takie jak \"forward-Zone:\" które \"obejmują:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "Edytuj: Rozszerzone" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Edytuj: Serwer" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Edytuj: UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "Edytuj: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Włącz" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "Włącz DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "Włącz DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Włącz Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "Włącz dostęp dla kontroli unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "Włącz moduł DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "Włącz moduł sprawdzania poprawności DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "Włącz skrypty inicjujące dla Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "Włącz tą strefę skierowaną" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Włączone" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "Rozszerzone statystyki" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "Rozszerzone statystyki są drukowane z kontroli unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "Dodatkowy DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "Wycofaj się" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "Wycofaj" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Pliki" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "Filtruj całą podsieć" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "Przypisz lokalny filtr" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "Filtruj prywatny adres" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "Przypisz prywatny filtr" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Przekazuj" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "Przekazuj (proste przekazanie)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "Przekazuj TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "Przekazuj do nadrzędnych serwerów nazw (ISP)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "Host FQDN, wszystkie adresy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "Rekordy hostów" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "Host/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "Host/MX/SRV/CNAME RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "Nazwa hosta, wszystkie adresy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "Nazwa hosta, adres podstawowy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "Jak wejść do sieci LAN lub routera sieci lokalnej w DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "Jak postępować z zapytaniami z tej lokalnej domeny" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "Wszystkie IP4 i Lokalne IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "Tylko IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 i IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "Tylko IP6 *" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "Preferowany IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Ignoruj" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "Interfejs FQDN, wszystkie adresy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "LAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "Duże" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" +"Ogranicz liczbę dni między kopiami RFC5011, aby zmniejszyć liczbę zapisów " +"flash" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "Ogranicz rozszerzony rozmiar pakietu DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "Link do obsługiwanych programów, aby załadować DHCP do DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "Lista domen do obejścia kontroli DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "Port nasłuchiwania" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "Dane lokalne" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "Domena lokalna" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "Typ domeny lokalnej" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "Host lokalny, zaszyfrowany" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "Host lokalny, bez szyfrowania" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "Usługi lokalne" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "Lokalna podsieć, zaszyfrowana" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "Lokalna podsieć, szyfrowanie statyczne" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "Strefy lokalne" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Dziennik" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "Ręczny conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Średnia" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "Zasoby pamięci" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" +"Sieci, które mogą wyzwolić Unbound do ponownego załadowania (unikaj wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "Brak wpisu" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "Brak filtra" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "Brak zdalnego sterowania" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" +"Uwaga: W bibliotece SSL/TLS brakuje API. Proszę przejrzeć dziennik " +"systemowy. >> logread ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" +"Uwaga: lokalny DNS jest skonfigurowany tak, aby patrzeć na odhpcd, ale " +"triger dzierżawy UCI odhpcd jest nieprawidłowo ustawiony:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" +"Zorganizuj strefy skierowane do forward, stub i strefy autorytatywne (Pomoc)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "Zastąp wejście routera po stronie WAN w DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "Pasywne" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "Serwery portów będą otrzymywać zapytania dotyczące" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "Prefiks dla generowanych adresów DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "Zapobiegaj przeciążeniu zapytaniami klienta; zero to wyłączone" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "Zapobiegaj zbyt krótkim okresom buforowania" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "Ochrona przed odpowiedzią upstream w 127.0.0.0/8" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "Ochrona przed reakcjami upstream w obrębie lokalnych podsieci" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "Minimalizuj zapytania" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "Limit szybkości zapytań" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "Powtórz" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "Protokół powrotny" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "Siła rekurencji" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "Aktywność rekurencyjna wpływa na wzrost pamięci i obciążenie procesora" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "Rekursywne DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "Odmówiono" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "Zasoby" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "Wiek root DSKEY" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Zapisz" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "Port serwera" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "Port TLS serwera" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "Serwery" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "Serwery dla tej strefy; zobacz README.md dla formularza opcjonalnego" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "Pokaż: Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "Pokaż: DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "Pokaż: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "Pomiń UCI i użyj /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "Mały" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "Statyczny (tylko lokalny)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Statystyki" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "Ścisła Minimalizacja" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "Ścisła wersja 'Minimalizuj zapytania', ale może złamać DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "Stub (wymuszona rekursja)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "Indeks nazwy TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "Minimalna wartość TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" +"Dzięki temu można wyświetlać więcej statystyk przy użyciu pakietu kontroli " +"unbound." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "To pokazuje" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" +"Pokazuje to 'ubound-control dump_cache' dla audytowania rekordów włącznie z " +"DNSSEC." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" +"To pokazuje Unbound \"local-data:\" wpisy z default,. conf, lub kontroli." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" +"To pokazuje Unbound \"local-zone:\" wpisy z default,. conf lub kontroli." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "Pokazuje statystyki Unbound dotyczące własnej wydajności." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "Pokazuje dziennik systemowy filtrowany dla zdarzeń z udziałem Unbound." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "Małe" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "Transparentny (lokalny/globalny)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "Wyzwalacz Sieci" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Typ" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" +"Unbound (NLnet Labs) jest walidacyjnym, " +"rekurencyjnym i buforowym rozdzielnikiem DNS. (help)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "Aplikacja do kontroli Unbound" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" +"Pamięć podręczna Unbound jest za duża, by można ją było wyświetlić w LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "Nieokreślony" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "Użyj 'resolv.conf.auto'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "Użyj DHCPv4 MAC do wykrycia hostów IP6 SLAAC (EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "Użyj Upstream" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "Użyj dodatkowych wpisów DNS znajdujących się w /etc/config/dhcp" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "Użyj menu Status/Procesy systemowe, aby obserwować przyrost pamięci" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "Nazwy stref (Domeny) zawarte w tej kombinacji stref" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "Adres URL pobierania strefy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "Nazwy stref" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "Typ strefy" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Strefy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "Akceptowanie wyników upstream dla" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "domyślna" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "pobierz z %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "Nigdy" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "pliki strefy Prefetch dla" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "wybrać powtarzalność dla" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "nieznana akcja dla" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "użyj %s serwerów nazw" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "użyj serwerów nazw" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "z domyślnym certyfikatem dla %s" diff --git a/package/luci/applications/luci-app-unbound/po/pt/unbound.po b/package/luci/applications/luci-app-unbound/po/pt/unbound.po new file mode 100644 index 0000000000..d636a36104 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/pt/unbound.po @@ -0,0 +1,795 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-19 09:43+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 4.2-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(nenhum)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "e entradas %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "e tente %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "Aceitar consultas apenas de sub-redes locais" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" +"A lista de domínios do Adblock é grande demais para ser exibida no LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avançado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "Agressivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "Permitir recursão aberta quando o registo não estiver na zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "Autoritário (ficheiro de zona)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "Básico" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" +"Dividir os componentes da consulta para obter uma privacidade limitada " +"adicional" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "Quebrar o loop onde DNSSEC precisa de NTP e NTP precisa de DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" +"Verificar a existência de um programa local para permitir o reencaminhamento " +"para localhost" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "Escolha a porta de escuta de Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "Escolher as versões IP utilizadas a montante e a jusante" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "Conectar a servidores usando TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "Ligação DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 para SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "Cache DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "Extensão de DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "DNS sobre TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "Prefixo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "Correção DNSSEC NTP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Padrão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "Negado (nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "Zona Direcionada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "Parte da URL apenas de diretório" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "Domínio Inseguro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "Nome de domínio para verificar o certificado TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "Sufixo de domínio para este roteador e clientes de DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "Tamanho EDNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Editar '" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "Editar opções da cláusula 'server:' para 'include:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" +"Editar uma zona de encaminhamento, stub ou cache-de-ficheiros-de-zona para " +"Unbound usar em vez de recursão." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "Editar cláusulas como 'forward-zone:' para 'include:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "Editar: Estendido" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Editar: Servidor" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Editar: UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "Editar: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Ativar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "Ativar DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "Ativar DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Ativar Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "Ativar o acesso para unbound-control" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "Ativar o módulo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "Ativar o módulo de validador DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "Ativar os scripts de inicialização para Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "Ativar esta zona direcionada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Ativado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "Estatísticas Estendidas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "As estatísticas estendidas são impressas do unbound-control" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "DNS Extra" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "Recuar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "Recuar" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Ficheiros" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "Filtrar Toda a Sub-rede" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "Filtrar Rebind do Localhost" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "Filtrar Endereço Privado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "Filtrar Rebind Privado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Encaminhar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "Encaminhar (entrega simples)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "Encaminhar TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "Encaminhar aos servidores de nomes originais (PROVEDOR)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "FQDN do Host, Todos os Endereços" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "Registos de Host" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "RR Host/MX/SRV" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "RR Host/MX/SRV/CNAME" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "Nome do Host, Todos os Endereços" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "Nome do Host, Endereço Principal" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "Como adicionar a LAN ou a rede local do roteador no DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "Como tratar as consultas deste domínio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "Todos IP4 e IPV6 Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "Apenas IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 e IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "Apenas IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "IP6 Preferído" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Ignorar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "Interface FQDN, Todos os Endereços" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "DNS LAN" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "Grande" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" +"Limite de dias entre cópias RFC5011 para reduzir as escritas na memória flash" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "Limitar o tamanho da extensão do pacote DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "Ligação para programas compatíveis para carregar o DHCP no DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "Lista de domínios contornados da verificação do DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "Porta de Escuta" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "Dados Locais" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "Domínio Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "Tipo de Domínio Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "Host local, Criptografado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "Host Local, Sem Criptografia" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "Serviço Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "Sub-rede Local, Criptografada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "Sub-rede Local, Encriptação Estática" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "Zonas Locais" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Log" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "Conf. Manual" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Médio" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "Recurso de Memória" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" +"Redes que podem ser impossíveis de ser recarregadas pelo Unbound (evitar " +"wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "Nenhuma Entrada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "Sem Filtro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "Sem Controle Remoto" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" +"Nota: uma API falta na biblioteca SSL/TLS. Favor revisar o syslog. >> " +"logread ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" +"Nota: o DNS local está configurado para pesquisar no odhpcd, porém o gatilho " +"de concessão de UCI do odhpcd está definido de forma incorreta:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" +"Organizar as zonas de encaminhamento direto, stub e zonas autoritativas (ajuda)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "Substituir a entrada paralela do roteador WAN no DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "Passivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "As portas dos servidores que receberão consultas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "Prefixo para endereços DNS64 gerados" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "Prevenir a sobrecarga de consultas do cliente; zero é desligado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "Evitar períodos de cache excessivamente curtos" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "Proteger contra resposta original vinda de 127.0.0.0/8" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "Proteger-se contra respostas upstream dentro de sub-redes locais" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "Consulta Minimizada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "Limite da Taxa de Consulta" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "Recursivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "Protocolo de Recursão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "Força de Recursão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" +"A atividade de recursão afeta o crescimento da memória e a carga da CPU" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "DNS Recursivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "Recusado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "Recurso" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "Idade do Root DSKEY" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Guardar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "Porta do Servidor" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "Porta do Servidor TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "Servidores" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "Servidores para esta zona; veja o README.md para o formulário opcional" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "Exibir: Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "Exibir: DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "Exibir: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "Ignorar UCI e usar /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "Pequeno" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "Estático (apenas local)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Estatística" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Estado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "Minimizar Rigorosamente" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "Versão rigorosa da 'consulta minimizada' porém pode quebrar o DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "Stub (recursão forçada)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "Índice de Nome TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "Mínimo de TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "Isto poderia exibir mais estatísticas com o pacote unbound-control." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "Isto mostra '" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" +"Isto mostra 'ubound-control dump_cache' para auditoria de registos incluindo " +"o DNSSEC." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "Isto mostra as entradas 'local-data:' do Unbound , .conf ou controle." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "Mostra entradas de 'zona local:' do Unbound padrão, .conf ou controle." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "Isto mostra as estatísticas de desempenho próprios do Unbound." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "Isto mostra o syslog filtrado para eventos envolvendo Unbound." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "Pequenino" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "Transparente (local/global)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "Redes de Gatilho" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Tipo" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" +"Unbound (NLnet Labs) é um resolvedor " +"DNS de validação, recursivo e cache (ajuda)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "App de Controle do Unbound" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "O cache do Unbound é grande demais para ser exibido em LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "Indefinido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "Usar 'resolv.conf.auto'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "Usar o MAC DHCPv4 para descobrir hosts IP6 SLAAC (EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "Usar o Upstream" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "Usar entradas de DNS adicionais encontradas em /etc/config/dhcp" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" +"Usar o menu Sistema/Processos para observar qualquer crescimento de memória" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "DNS WAN" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "Nomes de Zona (Domínio) incluídos nesta combinação de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "URL de Descarregamento de Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "Nomes de Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "Tipo de Zona" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "aceitar resultados originais para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "padrão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "descarregar de %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "nunca" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "ficheiros de zona de pré-busca para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "recursão selecionada para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "ação desconhecida para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "use servidores de nome %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "usar servidores de nome" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "com certificado padrão para %s" diff --git a/package/luci/applications/luci-app-unbound/po/pt_BR/unbound.po b/package/luci/applications/luci-app-unbound/po/pt_BR/unbound.po new file mode 100644 index 0000000000..12f5378c9a --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/pt_BR/unbound.po @@ -0,0 +1,799 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-01 08:19+0000\n" +"Last-Translator: Igor Benek-Lins \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 4.3.2-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(nenhum)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr ", e %s entradas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr ", e tente %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "Aceitar consultas apenas de sub-redes locais" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" +"A lista de domínios do Adblock é muito grande para ser exibida no LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avançado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "Agressivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "Permitir a recursão aberta quando o registro não estiver na zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "Autoritativo (arquivo de zona)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "Básico" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" +"Dividir os componentes da consulta para obter uma privacidade adicional " +"limitada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "Dividir o loop onde o DNSSEC precisa do NTP e o NTP precisa do DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" +"Verifique a existência de um programa local que permita o encaminhamento " +"para o localhost" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "Escolha a porta de escuta Unbounds" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "Escolha as versões IP a utilizadas upstream e downstream" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "Conecte-se aos servidores usando TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "Link DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 para SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "Cache DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "DNS Plugin" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "DNS sobre TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "Prefixo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "Correção DNSSEC NTP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Padrão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "Negado (nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "Zona Direcionada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "Diretório apenas parte da URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "Domínio Inseguro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "Nome de domínio para verificar o certificado TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "Sufixo de domínio para este roteador e clientes DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "Tamanho do EDNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Editar '" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "Editar as opções da cláusula 'server:' para 'incluir:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" +"Edite uma zona de cache de arquivos de encaminhamento, de stub ou de zona-" +"arquivo para Unbound em vez de usar recursividade." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "Editar cláusulas como 'forward-zone:' para 'incluir:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "Editar: Extendido" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Editar: Servidor" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Editar: UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "Editar: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Ativar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "Ativar DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "Ativar DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "Ativar Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "Ativar acesso para o controle unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "Ativar o módulo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "Ativar o módulo de validação DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "Ativar os scripts de inicialização para Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "Habilitar esta zona de direcionamento" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Ativado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "Estatísticas estendidas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "As estatísticas estendidas são impressas a partir de unbound-control" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "DNS Extra" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "Recuar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "Recuar" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Arquivos" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "Filtrar toda a sub-rede" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "Religar Filtro Localhost" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "Filtrar Endereço Privado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "Religar Filtro Privado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Encaminhar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "Encaminhar (entrega simples)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "Encaminhar TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "Encaminhar para resolvedores externos (PROVEDOR)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "FQDN do Host, Todos os Endereços" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "Registros de Host" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "Host/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "Host/MX/SRV/CNAME RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "Nome do Host, Todos os Endereços" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "Nome do Host, Endereço Principal" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "Como adicionar a LAN ou a rede local do roteador no DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "Como tratar as consultas deste domínio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "Todos os IP4 e IPV6 locais" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "Apenas IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 e IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "Apenas IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "É preferível IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Ignorar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "Interface FQDDN, Todos os Endereços" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "LAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "Grande" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" +"Limite de dias entre cópias RFC5011 para reduzir as escritas na memória flash" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "Limitar o tamanho da extensão do pacote DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "Link para programas compatíveis para carregar o DHCP no DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "Lista de domínios que serão Ignorados pela verificação do DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "Escutando na Porta" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "Dados Locais" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "Domínio Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "Tipo de Domínio Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "Host local, Criptografado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "Host Local, Sem Criptografia" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "Serviço Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "Sub-rede Local, Criptografada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "Sub-rede Local, Encriptação Estática" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "Zonas Locais" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Log" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "Conf. Manual" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Médio" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "Recurso de Memória" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" +"Desencadeamento de redes que podem ser impossíveis de recarregar (evitar " +"wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "Nenhuma Entrada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "Sem Filtro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "Sem Controle Remoto" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" +"Nota: Falta uma API na biblioteca SSL/TLS. Favor revisar o syslog. >> " +"logread ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" +"Nota: o DNS local está configurado para pesquisar no odhpcd, porém o gatilho " +"de concessão de UCI do odhpcd está definido de forma incorreta:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" +"Organize as zonas de encaminhamento direto, stub e zonas autoritativas (ajuda)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "Substituir a entrada paralela do roteador WAN no DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "Passivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "As portas dos servidores que receberão consultas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "Prefixo para endereços DNS64 gerados" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "Evitar sobrecarga da consulta ao cliente; zero desliga" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "Evitar períodos de cache excessivamente curtos" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "Proteger contra resposta upstream vinda de 127.0.0.0/8" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "Proteger-se contra respostas upstream dentro de sub-redes locais" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "Consulta Minimizada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "Limite da Taxa de Consulta" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "Recursivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "Protocolo de Recursão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "Força de Recursão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" +"A atividade de recursão afeta o crescimento da memória e a carga da CPU" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "DNS Recursivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "Recusado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "Recurso" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "Idade do Root DSKEY" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Salvar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "Porta do Servidor" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "Porta do Servidor TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "Servidores" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "Servidores para esta zona; ver README.md para o formulário opcional" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "Exibir: Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "Exibir: DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "Exibir: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "Ignore a UCI e use /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "Pequeno" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "Estático (apenas local)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Estatísticas" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Condição Geral" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "Minimizar Rigorosamente" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "Versão restrita da 'consulta minimizada' porém pode quebrar o DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "Stub (recursão forçada)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "Índice de Nome TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "Mínimo de TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "Isso poderia exibir mais estatísticas com o pacote unbound-control." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "Isso mostra '" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" +"Isso mostra 'ubound-control dump_cache' para auditoria de registros " +"incluindo o DNSSEC." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" +"Mostra as entradas 'dados locais:' não vinculados com o padrão, .conf ou " +"controle." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" +"Mostra entradas de 'zona local:' não vinculadas com o padrão, .conf ou " +"controle." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "Isso mostra as estatísticas de desempenho próprios não vinculadas." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "Isso mostra o syslog filtrado para eventos envolvendo Unbound." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "Pequeno" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "Transparente (local/global)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "Redes de Gatilho" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Tipo" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Não consolidado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" +"Unbound (NLnet Labs) é um resolvedor " +"DNS de validação, recursivo e cache (ajuda)." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "Aplicativo de Controle não Consolidado" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "O cache não vinculado é muito grande para ser exibido em LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "Indefinido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "Utilize 'resolv.conf.auto'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "Use o MAC DHCPv4 para descobrir hosts IP6 SLAAC (EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "Use o Upstream" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "Use entradas de DNS extras encontradas em /etc/config/dhcp" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" +"Use o menu Sistema/Processos para observar qualquer crescimento de memória" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "Nomes de Zona (Domínio) incluídos nesta combinação de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "URL de Download de Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "Nomes de Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "Tipo de Zona" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "aceitar resultados upstream para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "Padrão" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "download de %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "nunca" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "arquivos de zona de pré-busca para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "recursão selecionada para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "ação desconhecida para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "use servidores de nome %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "usar servidores de nome" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "com certificado padrão para %s" diff --git a/package/luci/applications/luci-app-unbound/po/ro/unbound.po b/package/luci/applications/luci-app-unbound/po/ro/unbound.po new file mode 100644 index 0000000000..1bb702c9f6 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/ro/unbound.po @@ -0,0 +1,773 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-10 12:23+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-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avansat" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Activează" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Activat" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Salvează" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/ru/unbound.po b/package/luci/applications/luci-app-unbound/po/ru/unbound.po new file mode 100644 index 0000000000..a78ac120be --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/ru/unbound.po @@ -0,0 +1,773 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-12-31 08:29+0000\n" +"Last-Translator: Nikita \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.4.1-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(нет)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "Принимать запросы только из локальных подсетей" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "Список доменов Adblock слишком большой для отображения в LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Дополнительно" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "Агрессивный" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "Основные" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "DNS-кэш" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "По умолчанию" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "Опасный домен" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "Размер EDNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Редактировать '" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Редактировать: Сервер" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Редактировать: UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Включить" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Включено" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Файлы" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Перенаправление" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "Только IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 и IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "Только* IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "Игнорировать" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "LAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "Большой" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "Порт для входящих соединений" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "Локальные данные" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "Локальный домен" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "Тип локального домена" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "Локальные зоны" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Системный журнал" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Средняя" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "Ресурс памяти" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "Нет фильтра" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "Нет удаленного управления" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "Пассивный" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Сохранить" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "Порт сервера" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "Серверы" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "Показать: Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "Показать: DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "Показать: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "Маленький" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Статистика" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Состояние" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "Минимальное значение TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Тип" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "Использовать 'resolv.conf.auto'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Зоны" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "по умолчанию" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/sk/unbound.po b/package/luci/applications/luci-app-unbound/po/sk/unbound.po new file mode 100644 index 0000000000..056f8dd3da --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/sk/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-09 21:41+0000\n" +"Last-Translator: Miloš Leškanič \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.1-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Pokročilé" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Povolené" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Záznam" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Uložiť" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Stav" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Typ" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/sv/unbound.po b/package/luci/applications/luci-app-unbound/po/sv/unbound.po new file mode 100644 index 0000000000..9cd56b5753 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/sv/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-10-17 20:23+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.9.1-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Avancerat" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Standard" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Aktivera" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Aktiverad" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Vidarebefordra" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Logg" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Spara" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Statistik" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Typ" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zoner" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "standard" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "aldrig" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/templates/unbound.pot b/package/luci/applications/luci-app-unbound/po/templates/unbound.pot new file mode 100644 index 0000000000..6bc58561c2 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/templates/unbound.pot @@ -0,0 +1,763 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/tr/unbound.po b/package/luci/applications/luci-app-unbound/po/tr/unbound.po new file mode 100644 index 0000000000..57ed00f7dd --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/tr/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-29 18:06+0000\n" +"Last-Translator: Mete \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 4.5-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(yok)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Gelişmiş" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Öntanımlı" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Etkinleştir" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Etkin" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Kaydet" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Durum" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Bölgeler" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "varsayılan" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/uk/unbound.po b/package/luci/applications/luci-app-unbound/po/uk/unbound.po new file mode 100644 index 0000000000..c6cad907b6 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/uk/unbound.po @@ -0,0 +1,773 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-18 11:31+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 3.11\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Додатково" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "Типова" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Увімкнути" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Увімкнено" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Файли" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Звіт" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "Середня" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Зберегти" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Статистика" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Стан" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Тип" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Зони" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "типова" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/vi/unbound.po b/package/luci/applications/luci-app-unbound/po/vi/unbound.po new file mode 100644 index 0000000000..6af62b9e72 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/vi/unbound.po @@ -0,0 +1,772 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-21 12:21+0000\n" +"Last-Translator: Darias \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.4-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "Nâng cao" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Kích hoạt" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Bật" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Trạng thái" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "Mặc định" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "" diff --git a/package/luci/applications/luci-app-unbound/po/zh_Hans/unbound.po b/package/luci/applications/luci-app-unbound/po/zh_Hans/unbound.po new file mode 100644 index 0000000000..6bdcaefa0c --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/zh_Hans/unbound.po @@ -0,0 +1,777 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-07 14:21+0000\n" +"Last-Translator: 孤爺仔 <7312140@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.5-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(无)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(根)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr ",及 %s 条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr ",并尝试 %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "仅接受来自本地子网的查询" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "Adblock 域名列表过大,无法在 LuCI 中显示。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "高级" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "激进" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "记录不在区域中时允许递归查询" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "权威(区域文件)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "基本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "细分查询组件以增加有限的隐私" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "打破 DNSSEC 需要 NTP,而 NTP 又需要 DNS 的循环" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "检查允许转发到本地主机的本地程序" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "选择 Unbounds 监听端口" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "选择上游和下游使用的 IP 版本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "使用 TLS 连接到服务器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "DHCP 链接" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 到 SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "DNS 缓存" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "DNS 插件" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "以TLS加密的DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "DNS64 前缀" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "DNSSEC NTP 修复" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "默认" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "否认(nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "转移区域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "目录只是 URL 的一部分" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "域不安全" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "用于验证 TLS 证书的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "此路由器和 DHCP 客户端的域名后缀" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "EDNS 大小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "编辑'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "编辑“server:”子选项,位于'include:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "编辑 Unbound 使用的转发、存根或区域文件缓存区域,而不进行递归查询。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "编辑子选项,例如“forward-zone:”,位于'include:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "编辑:扩展" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "编辑:服务器" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "编辑:UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "编辑:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "启用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "启用 DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "启用 DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "启用 Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "启用 unbound-control 访问" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "启用 DNS64 模块" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "启用 DNSSEC 验证模块" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "启用 Unbound 的初始化脚本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "启用此转移区域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "启用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "扩展统计" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "扩展统计信息从 unbound-control 打印" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "额外的 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "文件" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "过滤整个子网" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "过滤本地主机重绑定" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "过滤私有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "过滤私有地址重绑定" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "转发" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "转发(简单切换)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "转发 TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "转发到上游名称服务器(ISP)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "主机 FQDN,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "主机记录" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "主机/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "主机/MX/SRV/CNAME RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "主机名,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "主机名,主要地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "如何在 DNS 中进入 LAN 或本地网络路由器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "如何处理此本地域的查询" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "所有 IP4 及本地 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "仅 IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 及 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "仅 IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "首选 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "忽略" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "接口 FQDN,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "局域网 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "大" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "限制 RFC5011 副本之间的天数,以减少闪存写入" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "限制扩展 DNS 数据包大小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "链接到支持的程序,以将 DHCP 加载到 DNS 中" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "列出要绕过 DNSSEC 检查的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "监听端口" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "本地数据" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "本地域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "本地域名类型" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "本地主机,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "本地主机,无加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "本地服务" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "本地子网,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "本地子网,静态加密" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "本地区域" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "日志" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "手动配置" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "中等" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "内存资源" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "可触发 Unbound 重新加载的网络(避免 wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "无条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "无过滤器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "无远程控制" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "注意:SSL/TLS库缺少 API。请查看 syslog。 >> logread ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "" +"注意:本地 DNS 配置为由 odhpcd 分配,但 odhpcd UCI 租约触发器设置不正确:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" +"组织转移转发、存根和权威区域(帮助)。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "覆盖路由器中的 WAN 端 DNS 条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "被动" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "服务器将接收查询的端口" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "生成 DNS64 地址的前缀" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "防止客户端查询超载;zero 表示关闭" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "防止缓存期过短" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "防止 127.0.0.0/8 的上游响应" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "防止本地子网内的上游响应" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "最小化查询" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "查询速率限制" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "递归" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "递归协议" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "递归强度" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "递归活动会增大内存使用和 CPU 负载" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "递归 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "拒绝" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "资源" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "Root DSKEY 年龄" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "保存" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "服务器端口" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "服务器 TLS 端口" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "服务器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "该区域的服务器;有关选项格式,请参阅 README.md" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "显示:Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "显示:DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "显示:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "跳过 UCI 并使用 /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "静态(仅限本地)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "统计" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "状态" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "严格最小化" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "严格版本的“最小化查询”,但会破坏 DNS 标准" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "存根(强制递归)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "TLS 名称索引" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "最小 TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "可以使用 unbound-control 包显示更多统计信息。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "显示'" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" +"这里显示了用于审核记录的“ubound-control dump_cache”输出(包括 DNSSEC)。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "显示来自默认、.conf 或 control 的 Unbound “local-data:”条目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "显示来自默认、.conf 或 control 的 Unbound “local-zone:”条目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "显示 Unbound 自我报告的性能统计信息。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "显示筛选出的涉及 Unbound 事件的 syslog。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "透明(本地/全球)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "触发网络" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "类型" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound(DNS服務)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" +"Unbound (NLnet Labs)是一个验证、递归和缓" +"存 DNS 解析器(帮助)。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "Unbound 控制应用程序" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "Unbound 缓存过大,无法在 LuCI 中显示。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "未定义" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "使用“resolv.conf.auto”" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "使用 DHCPv4 MAC 发现 IP6 主机 SLAAC(EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "使用上游" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "使用 /etc/config/dhcp 中的额外 DNS 条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "使用 系统/进程 菜单观察内存增长" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "包含在此区域组合中的区域(域)名称" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "区域下载 URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "区域名称" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "区域类型" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "区域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "接受上游结果" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "默认" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "从 %s 下载" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "从不" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "预取区域文件,为" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "进行递归,为" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "未知行为,为" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "使用 %s 名称服务器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "使用名称服务器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "使用 %s 的默认证书" diff --git a/package/luci/applications/luci-app-unbound/po/zh_Hant/unbound.po b/package/luci/applications/luci-app-unbound/po/zh_Hant/unbound.po new file mode 100644 index 0000000000..e6378fa2c2 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/po/zh_Hant/unbound.po @@ -0,0 +1,775 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-17 20:54+0000\n" +"Last-Translator: akibou \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 4.5-dev\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:141 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:53 +msgid "(none)" +msgstr "(無)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(根)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:202 +msgid ", and %s entries" +msgstr ",及 %s 條目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try %s" +msgstr ",並嘗試 %s" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:67 +msgid "Accept queries only from local subnets" +msgstr "僅接受來自本地子網的查詢" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:215 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "Adblock網域列表太大,無法顯示在LuCI中." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Advanced" +msgstr "進階" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:243 +msgid "Aggressive" +msgstr "激進" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "記錄不在區域中時允許遞迴查詢" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "權威(區域檔案)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:41 +msgid "Basic" +msgstr "基本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Break down query components for limited added privacy" +msgstr "細分查詢元件以增加有限的隱私" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:77 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "打破 'DNSSEC 需要NTP並且NTP 又需要 DNS '所在的循環迴圈" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Check for local program to allow forward to localhost" +msgstr "檢查本地程式以允許轉發到本地主機" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:83 +msgid "Choose Unbounds listening port" +msgstr "選擇 Unbounds 監聽埠" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "Chose the IP versions used upstream and downstream" +msgstr "選擇上游和下游使用的 IP 版本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:64 +msgid "Connect to servers using TLS" +msgstr "使用 TLS 連線到伺服器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:47 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCP Link" +msgstr "DHCP 連結" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:147 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 到 SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "DNS快取" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "DNS Plugin" +msgstr "DNS插件" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:63 +msgid "DNS over TLS" +msgstr "以TLS加密的DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "DNS64 Prefix" +msgstr "DNS64 字首" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:76 +msgid "DNSSEC NTP Fix" +msgstr "DNSSEC NTP 修復" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:220 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:231 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Default" +msgstr "預設" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:162 +msgid "Denied (nxdomain)" +msgstr "否認(nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "轉移區域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:85 +msgid "Directory only part of URL" +msgstr "目錄只是 URL 的一部分" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:114 +msgid "Domain Insecure" +msgstr "域不安全" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:80 +msgid "Domain name to verify TLS certificate" +msgstr "用於驗證 TLS 證書的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "Domain suffix for this router and DHCP clients" +msgstr "此路由器和 DHCP 客戶端的域名字尾" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "EDNS Size" +msgstr "EDNS 大小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:15 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "編輯'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:15 +msgid "Edit 'server:' clause options for 'include:" +msgstr "編輯“server:”子選項,位於'include:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "編輯 Unbound 使用的轉發、存根或區域檔案快取區域,而不進行遞迴查詢。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:15 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "編輯子選項,例如“forward-zone:”,位於'include:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "編輯:擴充套件" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "編輯:伺服器" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "編輯:UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "編輯:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "啟用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:101 +msgid "Enable DNS64" +msgstr "啟用 DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:71 +msgid "Enable DNSSEC" +msgstr "啟用 DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:53 +msgid "Enable Unbound" +msgstr "啟用 Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Enable access for unbound-control" +msgstr "啟用 unbound-control 訪問" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:102 +msgid "Enable the DNS64 module" +msgstr "啟用 DNS64 模組" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:72 +msgid "Enable the DNSSEC validator module" +msgstr "啟用 DNSSEC 驗證模組" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:54 +msgid "Enable the initialization scripts for Unbound" +msgstr "啟用 Unbound 的初始化指令碼" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "啟用此轉移區域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "啟用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:278 +msgid "Extended Statistics" +msgstr "擴充套件統計" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "Extended statistics are printed from unbound-control" +msgstr "擴充套件統計資訊從 unbound-control 列印" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Extra DNS" +msgstr "額外的 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "檔案" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "Filter Entire Subnet" +msgstr "過濾整個子網" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Localhost Rebind" +msgstr "過濾本地主機重繫結" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:97 +msgid "Filter Private Address" +msgstr "過濾私有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Filter Private Rebind" +msgstr "過濾私有地址重繫結" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "轉發" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "轉發(簡單切換)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "轉發 TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +msgid "Forward to upstream nameservers (ISP)" +msgstr "轉發到上游名稱伺服器(ISP)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Host FQDN, All Addresses" +msgstr "主機 FQDN,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:198 +msgid "Host Records" +msgstr "主機記錄" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:199 +msgid "Host/MX/SRV RR" +msgstr "主機/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:200 +msgid "Host/MX/SRV/CNAME RR" +msgstr "主機/MX/SRV/CNAME RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:175 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:187 +msgid "Hostname, All Addresses" +msgstr "主機名,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:174 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:186 +msgid "Hostname, Primary Address" +msgstr "主機名,主要地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +msgid "How to enter the LAN or local network router in DNS" +msgstr "如何在 DNS 中進入 LAN 或本地網路路由器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:160 +msgid "How to treat queries of this local domain" +msgstr "如何處理此本地域的查詢" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:222 +msgid "IP4 All and IP6 Local" +msgstr "所有 IP4 及本地 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:221 +msgid "IP4 Only" +msgstr "僅 IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +msgid "IP4 and IP6" +msgstr "IP4 及 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "IP6 Only*" +msgstr "僅 IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "IP6 Preferred" +msgstr "首選 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:197 +msgid "Ignore" +msgstr "忽視" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Interface FQDN, All Addresses" +msgstr "介面 FQDN,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +msgid "LAN DNS" +msgstr "區域網 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Large" +msgstr "大" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:120 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:285 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "限制 RFC5011 副本之間的天數,以減少快閃記憶體寫入" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Limit extended DNS packet size" +msgstr "限制擴充套件 DNS 資料包大小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "連結到支援的程式,以將 DHCP 載入到 DNS 中" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +msgid "List domains to bypass checks of DNSSEC" +msgstr "列出要繞過 DNSSEC 檢查的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Listening Port" +msgstr "監聽埠" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "本地資料" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain" +msgstr "本地域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Local Domain Type" +msgstr "本地域名型別" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Local Host, Encrypted" +msgstr "本地主機,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Local Host, No Encryption" +msgstr "本地主機,無加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:66 +msgid "Local Service" +msgstr "本地服務" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +msgid "Local Subnet, Encrypted" +msgstr "本地子網,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "Local Subnet, Static Encryption" +msgstr "本地子網,靜態加密" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "本地區域" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "日誌" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:57 +msgid "Manual Conf" +msgstr "手動配置" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Medium" +msgstr "中等" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Memory Resource" +msgstr "記憶體資源" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:130 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:295 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "可觸發 Unbound 重新載入的網路(避免 wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:173 +msgid "No Entry" +msgstr "無項目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:96 +msgid "No Filter" +msgstr "無過濾器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:211 +msgid "No Remote Control" +msgstr "無遠端控制" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "注意:SSL/TLS庫缺少 API。請檢視 syslog。 >> logread ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:35 +msgid "" +"Note: local DNS is configured to look at odhpcd, but odhpcd UCI lease " +"trigger is incorrectly set:" +msgstr "注意:本地DNS是設置來查看odhpcd,但是odhpcd UCI租約觸發器設置不正確:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones (help)." +msgstr "" +"組織轉移轉發、存根和權威區域(幫助)。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Override the WAN side router entry in DNS" +msgstr "覆蓋路由器中的 WAN 端 DNS 條目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Passive" +msgstr "被動" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:68 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:74 +msgid "Port servers will receive queries on" +msgstr "伺服器將接收查詢的埠" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "Prefix for generated DNS64 addresses" +msgstr "生成 DNS64 地址的字首" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Prevent client query overload; zero is off" +msgstr "防止客戶端輪詢超載;零是關閉" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Prevent excessively short cache periods" +msgstr "防止快取期過短" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "防止 127.0.0.0/8 的上游響應" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:95 +msgid "Protect against upstream responses within local subnets" +msgstr "防止本地子網內的上游響應" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:247 +msgid "Query Minimize" +msgstr "最小化查詢" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Query Rate Limit" +msgstr "輪詢速率限制" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "遞迴" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "Recursion Protocol" +msgstr "遞迴協議" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 +msgid "Recursion Strength" +msgstr "遞迴強度" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:240 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "遞迴活動會增大記憶體使用和 CPU 負載" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:24 +msgid "Recursive DNS" +msgstr "遞迴 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:163 +msgid "Refused" +msgstr "拒絕" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:48 +msgid "Resource" +msgstr "資源" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:119 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:284 +msgid "Root DSKEY Age" +msgstr "Root DSKEY 年齡" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "儲存" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:67 +msgid "Server Port" +msgstr "伺服器埠" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:73 +msgid "Server TLS Port" +msgstr "伺服器 TLS 埠" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "伺服器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "該區域的伺服器;請參閱 README.md 以取得選項格式" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "顯示:Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "顯示:DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "顯示:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "跳過 UCI 並使用 /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Small" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "Static (local only)" +msgstr "靜態(僅限本地)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "統計" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "狀態" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "Strict Minimize" +msgstr "嚴格最小化" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "嚴格版本的“最小化查詢”,但會破壞 DNS 標準" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "存根(強制遞迴)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:79 +msgid "TLS Name Index" +msgstr "TLS 名稱索引" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "TTL Minimum" +msgstr "最小 TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:104 +msgid "This could display more statistics with the unbound-control package." +msgstr "可以使用 unbound-control 包顯示更多統計資訊。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:187 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:223 +msgid "This shows '" +msgstr "顯示'" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:174 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "這顯示了用於審核(包括DNSSEC)的記錄 'ubound-control dump_cache'。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:138 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "顯示來自預設、.conf 或 control 的 Unbound “local-data:”條目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:150 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "顯示來自預設、.conf 或 control 的 Unbound “local-zone:”條目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:126 +msgid "This shows Unbound self reported performance statistics." +msgstr "顯示 Unbound 自我報告的效能統計資訊。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:114 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "顯示篩選出的涉及 Unbound 事件的 syslog。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:232 +msgid "Tiny" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "Transparent (local/global)" +msgstr "透明(本地/全球)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:129 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:294 +msgid "Trigger Networks" +msgstr "觸發網路" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "類型" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound(DNS服務)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:25 +msgid "" +"Unbound (NLnet Labs) is a validating, " +"recursive, and caching DNS resolver (help)." +msgstr "" +"Unbound (NLnet Labs)是一個驗證、遞迴和緩" +"存 DNS 解析器(幫助)。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Unbound Control App" +msgstr "Unbound 控制應用程式" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:167 +msgid "Unbound cache is too large to display in LuCI." +msgstr "未綁定的快取太大,無法顯示在LuCI中。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "未定義" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Use 'resolv.conf.auto'" +msgstr "使用“resolv.conf.auto”" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:148 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "使用 DHCPv4 MAC 發現 IP6 主機 SLAAC(EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:185 +msgid "Use Upstream" +msgstr "使用上游" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:195 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "使用 /etc/config/dhcp 中的額外 DNS 條目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:230 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "使用 系統/程序 選單觀察記憶體增長" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "包含在此區域組合中的區域(域)名稱" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:84 +msgid "Zone Download URL" +msgstr "區域下載 URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "區域名稱" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "區域型別" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "區域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "接受上游結果" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:123 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:288 +msgid "default" +msgstr "預設" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from %s" +msgstr "從 %s 下載" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:126 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:291 +msgid "never" +msgstr "從不" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "預取區域檔案,為" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "進行遞迴,為" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "未知行為,為" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:206 +msgid "use %s nameservers" +msgstr "使用 %s 名稱伺服器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "使用名稱伺服器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:165 +msgid "with default certificate for %s" +msgstr "使用 %s 的預設證書" diff --git a/package/luci/applications/luci-app-unbound/root/etc/uci-defaults/60_luci-unbound b/package/luci/applications/luci-app-unbound/root/etc/uci-defaults/60_luci-unbound new file mode 100644 index 0000000000..c2ac8c93b6 --- /dev/null +++ b/package/luci/applications/luci-app-unbound/root/etc/uci-defaults/60_luci-unbound @@ -0,0 +1,12 @@ +#!/bin/sh + +uci -q batch <<-EOF >/dev/null + delete ucitrack.@unbound[-1] + add ucitrack unbound + set ucitrack.@unbound[-1].init=unbound + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 + diff --git a/package/luci/applications/luci-app-unbound/root/usr/share/rpcd/acl.d/luci-app-unbound.json b/package/luci/applications/luci-app-unbound/root/usr/share/rpcd/acl.d/luci-app-unbound.json new file mode 100644 index 0000000000..60779023ac --- /dev/null +++ b/package/luci/applications/luci-app-unbound/root/usr/share/rpcd/acl.d/luci-app-unbound.json @@ -0,0 +1,11 @@ +{ + "luci-app-unbound": { + "description": "Grant UCI access for luci-app-unbound", + "read": { + "uci": [ "unbound" ] + }, + "write": { + "uci": [ "unbound" ] + } + } +}