diff options
Diffstat (limited to 'applications/luci-app-ddns')
36 files changed, 15646 insertions, 726 deletions
diff --git a/applications/luci-app-ddns/Makefile b/applications/luci-app-ddns/Makefile index 18906cd1c..1bffcaa4b 100644 --- a/applications/luci-app-ddns/Makefile +++ b/applications/luci-app-ddns/Makefile @@ -6,32 +6,33 @@ include $(TOPDIR)/rules.mk -# LuCI specific settings -LUCI_TITLE:=LuCI Support for Dynamic DNS Client (ddns-scripts) -LUCI_DEPENDS:=+luci-mod-admin-full +ddns-scripts - PKG_NAME:=luci-app-ddns # Version == major.minor.patch # increase on new functionality (minor) or patches (patch) -PKG_VERSION:=2.1.1 +PKG_VERSION:=2.2.2 # Release == build # increase on changes of translation files -PKG_RELEASE:=0 +PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=Christian Schoenebeck <christian.schoenebeck@gmail.com> +# LuCI specific settings +LUCI_TITLE:=LuCI Support for Dynamic DNS Client (ddns-scripts) +LUCI_DEPENDS:=+luci-mod-admin-full +ddns-scripts +LUCI_PKGARCH:=all + define Package/$(PKG_NAME)/config # shown in make menuconfig <Help> help $(LUCI_TITLE) - - Version : $(PKG_VERSION)-$(PKG_RELEASE) - Maintainer: $(PKG_MAINTAINER) + . + Version: $(PKG_VERSION)-$(PKG_RELEASE) + $(PKG_MAINTAINER) endef -include ../../luci.mk +include $(TOPDIR)/feeds/luci/luci.mk # call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-ddns/luasrc/controller/ddns.lua b/applications/luci-app-ddns/luasrc/controller/ddns.lua index 56d2b66e2..0b82021e2 100644 --- a/applications/luci-app-ddns/luasrc/controller/ddns.lua +++ b/applications/luci-app-ddns/luasrc/controller/ddns.lua @@ -15,7 +15,7 @@ local SYS = require "luci.sys" local DDNS = require "luci.tools.ddns" -- ddns multiused functions local UTIL = require "luci.util" -DDNS_MIN = "2.1.0-2" -- minimum version of service required +DDNS_MIN = "2.2.0-1" -- minimum version of service required function index() local nxfs = require "nixio.fs" -- global definitions not available @@ -36,6 +36,7 @@ function index() entry( {"admin", "services", "ddns", "detail"}, cbi("ddns/detail"), nil ).leaf = true entry( {"admin", "services", "ddns", "hints"}, cbi("ddns/hints", {hideapplybtn=true, hidesavebtn=true, hideresetbtn=true}), nil ).leaf = true + entry( {"admin", "services", "ddns", "global"}, cbi("ddns/global"), nil ).leaf = true entry( {"admin", "services", "ddns", "logview"}, call("logread") ).leaf = true entry( {"admin", "services", "ddns", "startstop"}, call("startstop") ).leaf = true entry( {"admin", "services", "ddns", "status"}, call("status") ).leaf = true @@ -90,7 +91,7 @@ local function _get_status() end -- process running but update needs to happen - -- problems it force_seconds > uptime + -- problems if force_seconds > uptime force_seconds = (force_seconds > uptime) and uptime or force_seconds if pid > 0 and ( lasttime + force_seconds - uptime ) <= 0 then datenext = "_verify_" @@ -103,7 +104,7 @@ local function _get_status() elseif pid == 0 and enabled == 0 then datenext = "_disabled_" - -- no process running and NOT + -- no process running and enabled elseif pid == 0 and enabled ~= 0 then datenext = "_stopped_" end @@ -149,11 +150,11 @@ end -- called by XHR.get from detail_logview.htm function logread(section) -- read application settings - local uci = UCI.cursor() - local log_dir = uci:get("ddns", "global", "log_dir") or "/var/log/ddns" - local lfile=log_dir .. "/" .. section .. ".log" + local uci = UCI.cursor() + local log_dir = uci:get("ddns", "global", "log_dir") or "/var/log/ddns" + local lfile = log_dir .. "/" .. section .. ".log" + local ldata = NXFS.readfile(lfile) - local ldata=NXFS.readfile(lfile) if not ldata or #ldata == 0 then ldata="_nodata_" end @@ -164,10 +165,10 @@ end -- called by XHR.get from overview_status.htm function startstop(section, enabled) local uci = UCI.cursor() + local pid = DDNS.get_pid(section) local data = {} -- Array to transfer data to javascript -- if process running we want to stop and return - local pid = DDNS.get_pid(section) if pid > 0 then local tmp = NX.kill(pid, 15) -- terminate NX.nanosleep(2) -- 2 second "show time" diff --git a/applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua b/applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua index 77753c03a..40a66ef15 100644 --- a/applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua +++ b/applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua @@ -1,11 +1,11 @@ -- Copyright 2008 Steven Barth <steven@midlink.org> -- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> -- Copyright 2013 Manuel Munz <freifunk at somakoma dot de> --- Copyright 2014 Christian Schoenebeck <christian dot schoenebeck at gmail dot com> +-- Copyright 2014-2015 Christian Schoenebeck <christian dot schoenebeck at gmail dot com> -- Licensed to the public under the Apache License 2.0. local NX = require "nixio" -local FS = require "nixio.fs" +local NXFS = require "nixio.fs" local SYS = require "luci.sys" local UTIL = require "luci.util" local DISP = require "luci.dispatcher" @@ -14,21 +14,21 @@ local DTYP = require "luci.cbi.datatypes" local DDNS = require "luci.tools.ddns" -- ddns multiused functions -- takeover arguments -- ####################################################### -section = arg[1] +local section = arg[1] -- check supported options -- ################################################## -- saved to local vars here because doing multiple os calls slow down the system -has_ipv6 = DDNS.check_ipv6() -- IPv6 support -has_ssl = DDNS.check_ssl() -- HTTPS support -has_proxy = DDNS.check_proxy() -- Proxy support -has_dnstcp = DDNS.check_bind_host() -- DNS TCP support -has_force = has_ssl and has_dnstcp -- Force IP Protocoll +local has_ipv6 = DDNS.check_ipv6() -- IPv6 support +local has_ssl = DDNS.check_ssl() -- HTTPS support +local has_proxy = DDNS.check_proxy() -- Proxy support +local has_dnstcp = DDNS.check_bind_host() -- DNS TCP support +local has_force = has_ssl and has_dnstcp -- Force IP Protocoll -- html constants -- ########################################################### -font_red = "<font color='red'>" -font_off = "</font>" -bold_on = "<strong>" -bold_off = "</strong>" +local font_red = "<font color='red'>" +local font_off = "</font>" +local bold_on = "<strong>" +local bold_off = "</strong>" -- error text constants -- ##################################################### err_ipv6_plain = translate("IPv6 not supported") .. " - " .. @@ -136,7 +136,10 @@ log_dir = m.uci:get(m.config, "global", "log_dir") or "/var/log/ddns" -- cbi-section definition -- ################################################### ns = m:section( NamedSection, section, "service", translate("Details for") .. ([[: <strong>%s</strong>]] % section), - translate("Configure here the details for selected Dynamic DNS service") ) + translate("Configure here the details for selected Dynamic DNS service.") + .. [[<br /><a href="http://wiki.openwrt.org/doc/uci/ddns#version_1x" target="_blank">]] + .. translate("For detailed information about parameter settings look here.") + .. [[</a>]] ) ns.instance = section -- arg [1] ns:tab("basic", translate("Basic Settings"), nil ) ns:tab("advanced", translate("Advanced Settings"), nil ) @@ -344,7 +347,7 @@ function ush.validate(self, value) end elseif (#url > 0) then return nil, err_tab_basic(self) .. translate("either url or script could be set") - elseif not FS.access(value) then + elseif not NXFS.access(value) then return nil, err_tab_basic(self) .. translate("File not found") end return value @@ -765,7 +768,7 @@ function ips.validate(self, value) if (usev6:formvalue(section) == "0" and src4:formvalue(section) ~= "script") or (usev6:formvalue(section) == "1" and src6:formvalue(section) ~= "script") then return "" - elseif not value or not (#value > 0) or not FS.access(split[1], "x") then + elseif not value or not (#value > 0) or not NXFS.access(split[1], "x") then return nil, err_tab_adv(self) .. translate("not found or not executable - Sample: '/path/to/script.sh'") else @@ -855,6 +858,34 @@ function eif6.write(self, section, value) end end +-- IPv4/IPv6 - bind_network -- ################################################# +if has_ssl or ( ( m:get(section, "bind_network") or "" ) ~= "" ) then + bnet = ns:taboption("advanced", ListValue, "bind_network", + translate("Bind Network") ) + bnet:depends("ipv4_source", "web") + bnet:depends("ipv6_source", "web") + bnet.rmempty = true + bnet.default = "" + bnet:value("", translate("-- default --")) + WADM.cbi_add_networks(bnet) + function bnet.cfgvalue(self, section) + local value = AbstractValue.cfgvalue(self, section) + if not has_ssl and value ~= "" then + self.description = bold_on .. font_red .. + translate("Binding to a specific network not supported") .. font_off .. "<br />" .. + translate("please set to 'default'") .. " !" .. bold_off + else + self.description = translate("OPTIONAL: Network to use for communication") .. + "<br />" .. translate("Casual users should not change this setting") + end + return value + end + function bnet.validate(self, value) + if (value ~= "" and has_ssl ) or value == "" then return value end + return nil, err_tab_adv(self) .. translate("Binding to a specific network not supported") .. " !" + end +end + -- IPv4 + IPv6 - force_ipversion (NEW) -- ###################################### -- optional to force wget/curl and host to use only selected IP version -- command parameter "-4" or "-6" @@ -1198,7 +1229,7 @@ lv.inputtitle = translate("Read / Reread log file") lv.rows = 50 function lv.cfgvalue(self, section) local lfile=log_dir .. "/" .. section .. ".log" - if FS.access(lfile) then + if NXFS.access(lfile) then return lfile .. "\n" .. translate("Please press [Read] button") end return lfile .. "\n" .. translate("File not found or empty") diff --git a/applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua b/applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua new file mode 100644 index 000000000..fbd3cb337 --- /dev/null +++ b/applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua @@ -0,0 +1,156 @@ +-- Copyright 2014 Christian Schoenebeck <christian dot schoenebeck at gmail dot com> +-- Licensed to the public under the Apache License 2.0. + +local NX = require "nixio" +local NXFS = require "nixio.fs" +local DISP = require "luci.dispatcher" +local SYS = require "luci.sys" +local DDNS = require "luci.tools.ddns" -- ddns multiused functions + +-- cbi-map definition -- ####################################################### +local m = Map("ddns") + +-- first need to close <a> from cbi map template our <a> closed by template +m.title = [[</a><a href="]] .. DISP.build_url("admin", "services", "ddns") .. [[">]] + .. translate("Dynamic DNS") + +m.description = translate("Dynamic DNS allows that your router can be reached with " .. + "a fixed hostname while having a dynamically changing IP address.") + +m.redirect = DISP.build_url("admin", "services", "ddns") + +function m.commit_handler(self) + if self.changed then -- changes ? + os.execute("/etc/init.d/ddns reload &") -- reload configuration + end +end + +-- cbi-section definition -- ################################################### +local ns = m:section( NamedSection, "global", "ddns", + translate("Global Settings"), + translate("Configure here the details for all Dynamic DNS services including this LuCI application.") + .. [[<br /><strong>]] + .. translate("It is NOT recommended for casual users to change settings on this page.") + .. [[</strong><br />]] + .. [[<a href="http://wiki.openwrt.org/doc/uci/ddns#version_2x1" target="_blank">]] + .. translate("For detailed information about parameter settings look here.") + .. [[</a>]] + ) + +-- section might not exist +function ns.cfgvalue(self, section) + if not self.map:get(section) then + self.map:set(section, nil, self.sectiontype) + end + return self.map:get(section) +end + +-- allow_local_ip -- ########################################################## +local ali = ns:option(Flag, "allow_local_ip") +ali.title = translate("Allow non-public IP's") +ali.description = translate("Non-public and by default blocked IP's") .. ":" + .. [[<br /><strong>IPv4: </strong>]] + .. "0/8, 10/8, 100.64/10, 127/8, 169.254/16, 172.16/12, 192.168/16" + .. [[<br /><strong>IPv6: </strong>]] + .. "::/32, f000::/4" +ali.reempty = true +ali.default = "0" +function ali.parse(self, section) + DDNS.flag_parse(self, section) +end +function ali.validate(self, value) + if value == self.default then + return "" -- default = empty + end + return value +end + +-- date_format -- ############################################################# +local df = ns:option(Value, "date_format") +df.title = translate("Date format") +df.description = [[<a href="http://www.cplusplus.com/reference/ctime/strftime/" target="_blank">]] + .. translate("For supported codes look here") + .. [[</a>]] +df.template = "ddns/global_value" +df.rmempty = true +df.default = "%F %R" +df.date_string = "" +function df.cfgvalue(self, section) + local value = AbstractValue.cfgvalue(self, section) or self.default + local epoch = os.time() + self.date_string = DDNS.epoch2date(epoch, value) + return value +end +function df.validate(self, value) + if value == self.default then + return "" -- default = empty + end + return value +end + +-- run_dir -- ################################################################# +local rd = ns:option(Value, "run_dir") +rd.title = translate("Status directory") +rd.description = translate("Directory contains PID and other status information for each running section") +rd.rmempty = true +rd.default = "/var/run/ddns" +function rd.validate(self, value) + if value == self.default then + return "" -- default = empty + end + return value +end + +-- log_dir -- ################################################################# +local ld = ns:option(Value, "log_dir") +ld.title = translate("Log directory") +ld.description = translate("Directory contains Log files for each running section") +ld.rmempty = true +ld.default = "/var/log/ddns" +function ld.validate(self, value) + if value == self.default then + return "" -- default = empty + end + return value +end + +-- log_lines -- ############################################################### +local ll = ns:option(Value, "log_lines") +ll.title = translate("Log length") +ll.description = translate("Number of last lines stored in log files") +ll.rmempty = true +ll.default = "250" +function ll.validate(self, value) + local n = tonumber(value) + if not n or math.floor(n) ~= n or n < 1 then + return nil, self.title .. ": " .. translate("minimum value '1'") + end + if value == self.default then + return "" -- default = empty + end + return value +end + +-- use_curl -- ################################################################ +if (SYS.call([[ grep -i "\+ssl" /usr/bin/wget >/dev/null 2>&1 ]]) == 0) +and NXFS.access("/usr/bin/curl") then + local pc = ns:option(Flag, "use_curl") + pc.title = translate("Use cURL") + pc.description = translate("If both cURL and GNU Wget are installed, Wget is used by default.") + .. [[<br />]] + .. translate("To use cURL activate this option.") + pc.orientation = "horizontal" + pc.rmempty = true + pc.default = "0" + function pc.parse(self, section) + DDNS.flag_parse(self, section) + end + function pc.validate(self, value) + if value == self.default then + return "" -- default = empty + end + return value + end +end + +return m diff --git a/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua b/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua index 009ba99eb..ff7aa7a41 100644 --- a/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua +++ b/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua @@ -8,7 +8,7 @@ local DDNS = require "luci.tools.ddns" -- ddns multiused functions -- check supported options -- ################################################## -- saved to local vars here because doing multiple os calls slow down the system -has_ssl = DDNS.check_ssl() -- HTTPS support +has_ssl = DDNS.check_ssl() -- HTTPS support and --bind-network / --interface has_proxy = DDNS.check_proxy() -- Proxy support has_dnstcp = DDNS.check_bind_host() -- DNS TCP support -- correct ddns-scripts version @@ -88,6 +88,22 @@ if not has_ssl then translate("In some versions cURL/libcurl in OpenWrt is compiled without proxy support.") end +-- No bind_network +if not has_ssl then + local dv = s:option(DummyValue, "_no_bind_network") + dv.titleref = DISP.build_url("admin", "system", "packages") + dv.rawhtml = true + dv.title = bold_on .. + translate("Binding to a specific network not supported") .. bold_off + dv.value = translate("Neither GNU Wget with SSL nor cURL installed to select a network to use for communication.") .. + "<br />- " .. + translate("You should install GNU Wget with SSL or cURL package.") .. + "<br />- " .. + translate("GNU Wget will use the IP of given network, cURL will use the physical interface.") .. + "<br />- " .. + translate("In some versions cURL/libcurl in OpenWrt is compiled without proxy support.") +end + -- cURL without proxy support if has_ssl and not has_proxy then local dv = s:option(DummyValue, "_no_proxy") diff --git a/applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua b/applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua index 83b10e936..9e8df2d08 100644 --- a/applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua +++ b/applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua @@ -27,8 +27,6 @@ bold_off = [[</strong>]] m = Map("ddns") -- first need to close <a> from cbi map template our <a> closed by template ---m.title = [[</a><a href="javascript:alert(']] .. CTRL.show_versions() ..[[')">]] .. --- translate("Dynamic DNS") m.title = [[</a><a href="javascript:alert(']] .. translate("Version Information") .. [[\n\nluci-app-ddns]] @@ -109,9 +107,13 @@ end -- TableSection definition -- ################################################## ts = m:section( TypedSection, "service", translate("Overview"), - translate("Below is a list of configured DDNS configurations and their current state." .. "<br />" .. - "If you want to send updates for IPv4 and IPv6 you need to define two separate Configurations " .. - "i.e. 'myddns_ipv4' and 'myddns_ipv6'") ) + translate("Below is a list of configured DDNS configurations and their current state.") + .. "<br />" + .. translate("If you want to send updates for IPv4 and IPv6 you need to define two separate Configurations " + .. "i.e. 'myddns_ipv4' and 'myddns_ipv6'") + .. "<br />" + .. [[<a href="]] .. DISP.build_url("admin", "services", "ddns", "global") .. [[">]] + .. translate("To change global settings click here") .. [[</a>]] ) ts.sectionhead = translate("Configuration") ts.template = "cbi/tblsection" ts.addremove = true diff --git a/applications/luci-app-ddns/luasrc/tools/ddns.lua b/applications/luci-app-ddns/luasrc/tools/ddns.lua index 2fbcff8ba..6d5393146 100644 --- a/applications/luci-app-ddns/luasrc/tools/ddns.lua +++ b/applications/luci-app-ddns/luasrc/tools/ddns.lua @@ -35,7 +35,7 @@ end -- check if Wget with SSL support or cURL installed function check_ssl() - if (SYS.call([[ grep -iq "\+ssl" /usr/bin/wget 2>/dev/null ]]) == 0) then + if (SYS.call([[ grep -i "\+ssl" /usr/bin/wget >/dev/null 2>&1 ]]) == 0) then return true else return NXFS.access("/usr/bin/curl") @@ -45,12 +45,12 @@ end -- check if Wget with SSL or cURL with proxy support installed function check_proxy() -- we prefere GNU Wget for communication - if (SYS.call([[ grep -iq "\+ssl" /usr/bin/wget 2>/dev/null ]]) == 0) then + if (SYS.call([[ grep -i "\+ssl" /usr/bin/wget >/dev/null 2>&1 ]]) == 0) then return true -- if not installed cURL must support proxy elseif NXFS.access("/usr/bin/curl") then - return (SYS.call([[ grep -iq all_proxy /usr/lib/libcurl.so* 2>/dev/null ]]) == 0) + return (SYS.call([[ grep -i all_proxy /usr/lib/libcurl.so* >/dev/null 2>&1 ]]) == 0) -- only BusyBox Wget is installed else @@ -100,25 +100,67 @@ end function ipkg_ver_compare(ver1, comp, ver2) if not ver1 or not (#ver1 > 0) or not ver2 or not (#ver2 > 0) - or not comp or not (#comp > 0) then - return nil + or not comp or not (#comp > 0) then return nil end + -- correct compare string + if comp == "<>" or comp == "><" or comp == "!=" or comp == "~=" then comp = "~=" + elseif comp == "<=" or comp == "<" or comp == "=<" then comp = "<=" + elseif comp == ">=" or comp == ">" or comp == "=>" then comp = ">=" + elseif comp == "=" or comp == "==" then comp = "==" + elseif comp == "<<" then comp = "<" + elseif comp == ">>" then comp = ">" + else return nil end + + local av1 = UTIL.split(ver1, "[%.%-]", nil, true) + local av2 = UTIL.split(ver2, "[%.%-]", nil, true) + + for i = 1, math.max(table.getn(av1),table.getn(av2)), 1 do + local s1 = av1[i] or "" + local s2 = av2[i] or "" + local n1 = tonumber(s1) + local n2 = tonumber(s2) + + -- one numeric and other empty string then set other to 0 + if n1 and not n2 and (not s2 or #s2 == 0) then n2 = 0 end + if n2 and not n1 and (not s1 or #s1 == 0) then n1 = 0 end + + local nc = (n1 and n2) -- numeric compare + + if nc then + -- first "not equal" found return true + if comp == "~=" and (n1 ~= n2) then return true end + -- first "lower" found return true + if (comp == "<" or comp == "<=") and (n1 < n2) then return true end + -- first "greater" found return true + if (comp == ">" or comp == ">=") and (n1 > n2) then return true end + -- not equal then return false + if (n1 ~= n2) then return false end + else + if comp == "~=" and (s1 ~= s2) then return true end + if (comp == "<" or comp == "<=") and (s1 < s2) then return true end + if (comp == ">" or comp == ">=") and (s1 > s2) then return true end + if (s1 ~= s2) then return false end + end end - return (tonumber(SYS.call( - [[opkg compare-versions "]] .. ver1 .. [[" "]] .. comp .. [[" "]] .. ver2 .. [["]] - )) == 1) + -- all equal then true + return true end -- read version information for given package if installed function ipkg_ver_installed(pkg) - if not pkg then - return nil - end - -- opkg list-installed [pkg] | cut -d " " -f 3 - return version as sting - local ver = SYS.exec([[opkg list-installed ]] .. pkg .. [[ | cut -d " " -f 3 ]]) - if (#ver > 0) then - return ver + local version = nil + local control = io.open("/usr/lib/opkg/info/%s.control" % pkg, "r") + if control then + local ln + repeat + ln = control:read("*l") + if ln and ln:match("^Version: ") then + version = ln:gsub("^Version: ", "") + break + end + until not ln + control:close() end - return nil + return version end -- replacement of build-in read of UCI option diff --git a/applications/luci-app-ddns/luasrc/view/ddns/global_value.htm b/applications/luci-app-ddns/luasrc/view/ddns/global_value.htm new file mode 100644 index 000000000..159cb6014 --- /dev/null +++ b/applications/luci-app-ddns/luasrc/view/ddns/global_value.htm @@ -0,0 +1,34 @@ + +<!-- ++ BEGIN ++ Dynamic DNS ++ global_value.htm ++ --> +<%+cbi/valueheader%> +<script type="text/javascript">//<![CDATA[ + // event handler on changed date + function onkeyup_date(value) { + var obj = document.getElementById("cbid.ddns.global.date_format.help"); + if ( !obj ) { return; } // security check + + if ( value == "" || value.length == 0 ) { value = "%F %R"; } + var now = new Date(); + var txt = now.toLocaleFormat(value); + // handle newline(%n) and tab(%t) needs to be converted to HTML + txt = txt.replace(new RegExp('\r?\n','g'), '<br />'); + txt = txt.replace(new RegExp('\t','g'), ' '); + obj.innerHTML = "<%:Current setting%>: <strong>" + txt + "<\/strong>"; + } +//]]></script> + +<input type="text" class="cbi-input-text" onchange="cbi_d_update(this.id)" onkeyup="onkeyup_date(this.value)" + <%= + attr("name", cbid) .. attr("id", cbid) .. attr("value", self:cfgvalue(section) or self.default) .. + ifattr(self.size, "size") .. ifattr(self.placeholder, "placeholder") + %> +/> +<br /> +<div class="cbi-value-description"> + <span class="cbi-value-helpicon"><img src="<%=resource%>/cbi/help.gif" alt="<%:help%>" /><%=self.description%></span> + <br /> + <span id="<%=cbid%>.help" class="cbi-value-helpicon"><%:Current setting%>: <strong><%=self.date_string%></strong></span> +</div> <!-- div class="cbi-value-description" --> +</div> <!-- div class="cbi-value-field" --> +</div> <!-- div class="cbi-value cbi-value-last" --> +<!-- ++ END ++ Dynamic DNS ++ global_value.htm ++ --> diff --git a/applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm b/applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm index 6cca0e75d..ea8e4a1e3 100644 --- a/applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm +++ b/applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm @@ -146,8 +146,7 @@ } else { // should have data because status changed // so update screen - if (data) - _data2elements(data); + if (data) { _data2elements(data); } } // make me invisible obj.parentNode.style.display = "none"; @@ -155,20 +154,19 @@ ); } - var ddns_ov_XHR = new XHR(); // force to immediate show status on page load (not waiting for XHR.poll) - ddns_ov_XHR.get('<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, function(x, data) { - _data2elements(data); + if (data) { _data2elements(data); } } ); // define only ONE XHR.poll in a page because if one is running it blocks the other one // optimum is to define on Map or Section Level from here you can reach all elements // we need update every 15 seconds only - ddns_ov_XHR.poll(15, '<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, + XHR.poll(15, '<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, function(x, data) { - _data2elements(data); + if (data) { _data2elements(data); } } ); diff --git a/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm b/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm index 7c60726e2..4ca0abb0e 100644 --- a/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm +++ b/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm @@ -14,53 +14,38 @@ tbl.deleteRow(1); // variable for Modulo-Division use to set cbi-rowstyle-? (0 or 1) - var x = -1; - var i = 1; - - // no data => no ddns-scripts Version 2 installed - if ( !data ) { - var txt = '<br /><strong><font color="red"><%:Old version of ddns-scripts installed%></font>' ; - var url = '<a href="' ; - url += '<%=luci.dispatcher.build_url("admin", "system", "packages")%>' ; - url += '"><%:install update here%></a></strong>' ; - var tr = tbl.insertRow(-1); - tr.className = 'cbi-section-table-row cbi-rowstyle-' + (((i + x) % 2) + 1); - var td = tr.insertCell(-1); - td.colSpan = 2 ; - td.innerHTML = txt + " - " + url - tr.insertCell(-1).colSpan = 3 ; - return; - } + var i = -1; + var j = 1; // DDNS Service disabled if (data[0].enabled == 0) { var txt = '<strong><font color="red"><%:DDNS Autostart disabled%></font>' ; var url = '<a href="' + data[0].url_up + '"><%:enable here%></a></strong>' ; var tr = tbl.insertRow(-1); - tr.className = 'cbi-section-table-row cbi-rowstyle-' + (((i + x) % 2) + 1); + tr.className = 'cbi-section-table-row cbi-rowstyle-' + (((j + i) % 2) + 1); var td = tr.insertCell(-1); td.colSpan = 2 ; td.innerHTML = txt + " - " + url tr.insertCell(-1).colSpan = 3 ; - x++ ; + i++ ; } - for( i = 1; i < data.length; i++ ) + for( j = 1; j < data.length; j++ ) { var tr = tbl.insertRow(-1); - tr.className = 'cbi-section-table-row cbi-rowstyle-' + (((i + x) % 2) + 1) ; + tr.className = 'cbi-section-table-row cbi-rowstyle-' + (((j + i) % 2) + 1) ; // configuration - tr.insertCell(-1).innerHTML = '<strong>' + data[i].section + '</strong>' ; + tr.insertCell(-1).innerHTML = '<strong>' + data[j].section + '</strong>' ; // pid - // data[i].pid ignored here + // data[j].pid ignored here // last update - // data[i].datelast ignored here + // data[j].datelast ignored here // next update - switch (data[i].datenext) { + switch (data[j].datenext) { case "_empty_": tr.insertCell(-1).innerHTML = '<em><%:Unknown error%></em>' ; break; @@ -80,18 +65,18 @@ tr.insertCell(-1).innerHTML = '<em><%:Verify%></em>'; break; default: - tr.insertCell(-1).innerHTML = data[i].datenext ; + tr.insertCell(-1).innerHTML = data[j].datenext ; break; } // domain - if (data[i].domain == "_nodomain_") + if (data[j].domain == "_nodomain_") tr.insertCell(-1).innerHTML = '<em><%:config error%></em>'; else - tr.insertCell(-1).innerHTML = data[i].domain; + tr.insertCell(-1).innerHTML = data[j].domain; // registered IP - switch (data[i].reg_ip) { + switch (data[j].reg_ip) { case "_nodomain_": tr.insertCell(-1).innerHTML = '<em><%:Config error%></em>'; break; @@ -102,15 +87,15 @@ tr.insertCell(-1).innerHTML = '<em><%:IPv6 not supported%></em>'; break; default: - tr.insertCell(-1).innerHTML = data[i].reg_ip; + tr.insertCell(-1).innerHTML = data[j].reg_ip; break; } // monitored interface - if (data[i].iface == "_nonet_") + if (data[j].iface == "_nonet_") tr.insertCell(-1).innerHTML = '<em><%:Config error%></em>'; else - tr.insertCell(-1).innerHTML = data[i].iface; + tr.insertCell(-1).innerHTML = data[j].iface; } if (tbl.rows.length == 1 || (data[0].enabled == 0 && tbl.rows.length == 2) ) { @@ -125,19 +110,19 @@ } } - var ddns_status_XHR = new XHR(); // force to immediate show status (not waiting for XHR.poll) - ddns_status_XHR.get('<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, function(x, data) { - _data2elements(x, data); + if (data) { _data2elements(x, data); } } ); - ddns_status_XHR.poll(10, '<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, + XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "services", "ddns", "status")%>', null, function(x, data) { - _data2elements(x, data); + if (data) { _data2elements(x, data); } } ); + //]]></script> <fieldset class="cbi-section" id="ddns_status_section"> diff --git a/applications/luci-app-ddns/po/ca/ddns.po b/applications/luci-app-ddns/po/ca/ddns.po index caa391676..35f13eba5 100644 --- a/applications/luci-app-ddns/po/ca/ddns.po +++ b/applications/luci-app-ddns/po/ca/ddns.po @@ -15,17 +15,155 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Comprova si s'ha canviat la IP cada" +msgid "&" +msgstr "" -#, fuzzy -msgid "Check-time unit" -msgstr "Unitat de temps de comprovació" +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" #, fuzzy msgid "Custom update-URL" msgstr "URL d'actualització personalitzada" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS dinàmic" @@ -37,56 +175,529 @@ msgstr "" "El DNS dinàmic permet que el teu router sigui localitzable amb un nom de " "màquin fix mentre té una adreça IP dinàmica." -msgid "Enable" -msgstr "Habilita" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" -msgid "Force update every" -msgstr "Força actualització cada" +msgid "Error" +msgstr "" -#, fuzzy -msgid "Force-time unit" -msgstr "Unitat de temps de forceig" +msgid "Error Retry Counter" +msgstr "" + +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" msgstr "" msgid "Interface" msgstr "Interfície" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Xarxa" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Contrasenya" -msgid "Service" -msgstr "Servei" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Origen de l'adreça IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Nom d'usuari" -msgid "custom" -msgstr "personalitzat" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Comprova si s'ha canviat la IP cada" + +#, fuzzy +#~ msgid "Check-time unit" +#~ msgstr "Unitat de temps de comprovació" + +#~ msgid "Enable" +#~ msgstr "Habilita" + +#~ msgid "Force update every" +#~ msgstr "Força actualització cada" + +#, fuzzy +#~ msgid "Force-time unit" +#~ msgstr "Unitat de temps de forceig" + +#~ msgid "Service" +#~ msgstr "Servei" + +#~ msgid "Source of IP address" +#~ msgstr "Origen de l'adreça IP" + +#~ msgid "custom" +#~ msgstr "personalitzat" # Hours -msgid "h" -msgstr "h" +#~ msgid "h" +#~ msgstr "h" -msgid "interface" -msgstr "interfície" +#~ msgid "interface" +#~ msgstr "interfície" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "xarxa" +#~ msgid "network" +#~ msgstr "xarxa" #~ msgid "Event interface" #~ msgstr "Interfície d'esdeveniment" diff --git a/applications/luci-app-ddns/po/cs/ddns.po b/applications/luci-app-ddns/po/cs/ddns.po index 15c1e228d..455c72a6a 100644 --- a/applications/luci-app-ddns/po/cs/ddns.po +++ b/applications/luci-app-ddns/po/cs/ddns.po @@ -15,15 +15,154 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Zkontrolovat změnu IP každých" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Check-time jednotka" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Vlastní aktualizační-URL" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Dynamické DNS" @@ -34,54 +173,529 @@ msgstr "" "Dynamické DNS umožňuje, aby mohl být váš router dostupný pod pevným " "hostname, zatímco se jeho IP adresa dynamicky mění." -msgid "Enable" -msgstr "Povolit" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Vynutit aktualizaci každých" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Force-time jednotka" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Hostname" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Rozhraní" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Síť" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Heslo" -msgid "Service" -msgstr "Služba" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Zdroj IP adresy" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Uživatelské jméno" -msgid "custom" -msgstr "vlastní" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Zkontrolovat změnu IP každých" + +#~ msgid "Check-time unit" +#~ msgstr "Check-time jednotka" + +#~ msgid "Enable" +#~ msgstr "Povolit" + +#~ msgid "Force update every" +#~ msgstr "Vynutit aktualizaci každých" + +#~ msgid "Force-time unit" +#~ msgstr "Force-time jednotka" + +#~ msgid "Hostname" +#~ msgstr "Hostname" + +#~ msgid "Service" +#~ msgstr "Služba" + +#~ msgid "Source of IP address" +#~ msgstr "Zdroj IP adresy" + +#~ msgid "custom" +#~ msgstr "vlastní" # Hours # Hodin -msgid "h" -msgstr "h" +#~ msgid "h" +#~ msgstr "h" -msgid "interface" -msgstr "rozhraní" +#~ msgid "interface" +#~ msgstr "rozhraní" # Minutes (not minimum) # Minut -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "síť" +#~ msgid "network" +#~ msgstr "síť" diff --git a/applications/luci-app-ddns/po/de/ddns.po b/applications/luci-app-ddns/po/de/ddns.po index b965a91fd..f6e0d5e39 100644 --- a/applications/luci-app-ddns/po/de/ddns.po +++ b/applications/luci-app-ddns/po/de/ddns.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: luci-app-ddns\n" -"POT-Creation-Date: 2015-01-17 18:28+0100\n" -"PO-Revision-Date: 2015-01-17 18:36+0100\n" +"POT-Creation-Date: 2015-02-08 18:30+0100\n" +"PO-Revision-Date: 2015-02-08 18:36+0100\n" "Last-Translator: Christian Schoenebeck <christian.schoenebeck@gmail.com>\n" "Language-Team: \n" "Language: de\n" @@ -20,9 +20,15 @@ msgstr "&" msgid "-- custom --" msgstr "-- benutzerdefiniert --" +msgid "-- default --" +msgstr "-- Standard --" + msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" +msgid "Allow non-public IP's" +msgstr "Erlaube Nicht-öffentliche IPs" + msgid "Applying changes" msgstr "Änderungen anwenden" @@ -38,12 +44,14 @@ msgstr "" msgid "" "Below is a list of configured DDNS configurations and their current state." -"<br />If you want to send updates for IPv4 and IPv6 you need to define two " -"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" msgstr "" -"Liste der definierten DDNS Konfigurationen und ihr aktueller Status.<br /" -">Wenn Sie Aktualisierungen für IPv4 und IPv6 senden möchten benötigen Sie " -"zwei Konfigurationen z.B. 'myddns_ipv4' und 'myddns_ipv6'" +"Liste der konfigurierten DDNS Konfigurationen und ihr momentaner Status." + +msgid "Bind Network" +msgstr "Bind-Netzwerk" + +msgid "Binding to a specific network not supported" +msgstr "'Bind' an ein bestimmtes Netzwerk wird nicht unterstützt" msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " @@ -59,6 +67,9 @@ msgstr "" "BusyBox's nslookup unterstützt es nicht das TCP-Protokoll für DNS Anfragen " "anstelle des standardmäßigen UDP-Protokolls." +msgid "Casual users should not change this setting" +msgstr "Standard Benutzer sollten diese Einstellung nicht ändern." + msgid "Check Interval" msgstr "Prüfinterval" @@ -71,8 +82,18 @@ msgstr "Konfigurationsfehler" msgid "Configuration" msgstr "Einstellungen" -msgid "Configure here the details for selected Dynamic DNS service" -msgstr "Konfiguriere hier die Details für den gewählten Dynamik DNS Dienst" +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" +"Konfiguriere hier die Details für alle Dynamik DNS Dienste einschließlich " +"dieser LuCI Anwendung." + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "Konfiguriere hier die Details für den gewählten Dynamik DNS Dienst." + +msgid "Current setting" +msgstr "Aktuelle Einstellung" msgid "" "Currently DDNS updates are not started at boot or on interface events.<br /" @@ -113,6 +134,9 @@ msgstr "DNS Anfragen über TCP nicht unterstützt" msgid "DNS-Server" msgstr "DNS-Server" +msgid "Date format" +msgstr "Datumsformat " + msgid "Defines the Web page to read systems IPv4-Address from" msgstr "" "Definiert die Web-Seite von der die aktuelle IPv4-Adresse des System gelesen " @@ -159,6 +183,16 @@ msgstr "" msgid "Details for" msgstr "Details für" +msgid "Directory contains Log files for each running section" +msgstr "" +"Das Verzeichnis enthält die Protokolldateien aller laufenden Konfigurationen." + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" +"Das Verzeichnis enthält die PID und andere Statusinformationen aller " +"laufenden Konfigurationen." + msgid "Disabled" msgstr "Deaktiviert" @@ -206,6 +240,13 @@ msgstr "" "Folgen Sie dem Link<br />Hier finden Sie weitere Hinweise um Ihr System für " "die Nutzung aller Optionen der DDNS Skripte zu optimieren." +msgid "For detailed information about parameter settings look here." +msgstr "" +"Detaillierte Informationen zu den Parametereinstellungen finden Sie hier." + +msgid "For supported codes look here" +msgstr "Unterstützte Kodierungen finden Sie hier." + msgid "Force IP Version" msgstr "Erzwinge IP-Version" @@ -227,6 +268,16 @@ msgstr "Format" msgid "Format: IP or FQDN" msgstr "Format: IP-Adresse oder FQDN" +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" +"GNU Wget verwendet die IP des gewählten Netzwerkes; cURL verwendet die " +"physikalische Schnittstelle." + +msgid "Global Settings" +msgstr "Globale Einstellungen" + msgid "HTTPS not supported" msgstr "HTTPS nicht unterstützt" @@ -263,6 +314,9 @@ msgstr "IPv6 nicht unterstützt" msgid "IPv6-Address" msgstr "IPv6-Adresse" +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "Wenn cURL und GNU Wget installiert sind, wird Wget verwendet." + msgid "" "If this service section is disabled it could not be started.<br />Neither " "from LuCI interface nor from console" @@ -271,6 +325,13 @@ msgstr "" "über das LuCI Web Interface noch von der Geräte-Konsole" msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" +"Wenn Sie Aktualisierungen für IPv4 und IPv6 senden möchten benötigen Sie " +"zwei Konfigurationen z.B. 'myddns_ipv4' und 'myddns_ipv6'" + +msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" "In einigen Versionen von OpenWrt wurde cURL/libcurl ohne Proxy Unterstützung " @@ -298,6 +359,11 @@ msgstr "" "werden.<br />Ein Wert von '0' führt das Skript nur einmalig aus. <br />Der " "Wert muss größer als das Prüfintervall sein oder '0'." +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" +"Es wird nicht empfohlen, dass Standard Benutzer die Einstellungen auf dieser " +"Seite ändern." + msgid "Last Update" msgstr "Letztes Aktualisierung" @@ -307,6 +373,12 @@ msgstr "Lade" msgid "Log File Viewer" msgstr "Protokolldatei" +msgid "Log directory" +msgstr "Protokoll-Verzeichnis" + +msgid "Log length" +msgstr "Protokolllänge" + msgid "Log to file" msgstr "Protokoll in Datei schreiben" @@ -314,6 +386,13 @@ msgid "Log to syslog" msgstr "Systemprotokoll verwenden" msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" +"Weder GNU Wget mit SSL noch cURL sind installiert um ein Netzwerk zur " +"Kommunikation festzulegen." + +msgid "" "Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " "protocol." msgstr "" @@ -338,9 +417,16 @@ msgstr "Keine Daten" msgid "No logging" msgstr "Keine Protokollierung" +msgid "Non-public and by default blocked IP's" +msgstr "Nicht-öffentliche und standardmäßig blockierte IPs." + msgid "Notice" msgstr "Notiz" +msgid "Number of last lines stored in log files" +msgstr "" +"Anzahl der letzten Zeilen die in der Protokolldatei gespeichert werden." + msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" "OPTIONAL: Erzwingt die Verwendung einer reinen IPv4/IPv6 Kommunikation." @@ -349,6 +435,9 @@ msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" "OPTIONAL: Erzwingt die Verwendung von TCP anstelle von UDP bei DNS Anfragen." +msgid "OPTIONAL: Network to use for communication" +msgstr "OPTIONAL: Netzwerk das zur Kommunikation verwendet werden soll." + msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPTIONAL: Proxy-Server für Adresserkennung und Aktualisierungen" @@ -357,9 +446,6 @@ msgstr "" "OPTIONAL: Ersetzt den voreingestellten DNS-Server um die 'Registrierte IP' " "zu ermitteln." -msgid "Old version of ddns-scripts installed" -msgstr "Alte Version von ddns-scripts installiert" - msgid "On Error the script will retry the failed action after given time" msgstr "" "Bei Fehlern wird das Skript die fehlerhafte Aktion nach der gegebenen Zeit " @@ -428,6 +514,9 @@ msgstr "Start" msgid "Start / Stop" msgstr "Start / Stopp" +msgid "Status directory" +msgstr "Status-Verzeichnis" + msgid "Stopped" msgstr "Angehalten" @@ -444,6 +533,12 @@ msgstr "Kein Dienst konfiguriert" msgid "Timer Settings" msgstr "Zeitgeber Einstellungen" +msgid "To change global settings click here" +msgstr "Globale Einstellungen können sie hier ändern." + +msgid "To use cURL activate this option." +msgstr "Um cURL zu verwenden aktivieren sie diese Einstellung." + msgid "URL" msgstr "URL" @@ -466,6 +561,9 @@ msgstr "Aktualisierungsfehler" msgid "Use HTTP Secure" msgstr "Verwende sicheres HTTP" +msgid "Use cURL" +msgstr "Verwende cURL" + msgid "User defined script to read systems IP-Address" msgstr "" "Definiert das Skript mit dem die aktuelle IP-Adresse des System gelesen " @@ -511,6 +609,9 @@ msgstr "" "Sie sollten das Programmpaket GNU Wget mit SSL (bevorzugt) oder cURL " "installieren." +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "Sie sollten das Programmpaket GNU Wget mit SSL oder cURL installieren." + msgid "You should install GNU Wget with SSL or replace libcurl." msgstr "" "Sie sollten das Programmpaket GNU Wget mit SSL installieren oder libcurl " @@ -548,12 +649,12 @@ msgstr "hier aktivieren" msgid "file or directory not found or not 'IGNORE'" msgstr "Datei oder Verzeichnis nicht gefunden oder nicht 'IGNORE'" +msgid "help" +msgstr "Hilfe" + msgid "hours" msgstr "Stunden" -msgid "install update here" -msgstr "Aktualisierung hier installieren" - msgid "installed" msgstr "installiert" @@ -615,6 +716,9 @@ msgstr "Bitte 'IPv4' Adressversion auswählen" msgid "please select 'IPv4' address version in" msgstr "Bitte 'IPv4' Adressversion auswählen in den" +msgid "please set to 'default'" +msgstr "Bitte auf 'Standard' setzen" + msgid "proxy port missing" msgstr "Proxy-Port fehlt" diff --git a/applications/luci-app-ddns/po/el/ddns.po b/applications/luci-app-ddns/po/el/ddns.po index bf12b2395..edbe19d14 100644 --- a/applications/luci-app-ddns/po/el/ddns.po +++ b/applications/luci-app-ddns/po/el/ddns.po @@ -13,15 +13,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" -msgid "Check for changed IP every" -msgstr "Έλεγχος για αλλαγή IP κάθε" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" -msgid "Check-time unit" -msgstr "Μονάδα χρόνου ελέγχου" +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Προσαρμοσμένο URL-ενημέρωσης" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Δυναμικό DNS" @@ -33,57 +172,532 @@ msgstr "" "ενός σταθερού ονόματος υπολογιστή παρόλο που η διεύθυνση IP του μπορεί να " "αλλάζει δυναμικά." -msgid "Enable" -msgstr "Ενεργοποίηση" +msgid "Enable secure communication with DDNS provider" +msgstr "" -msgid "Force update every" -msgstr "Εξαναγκασμός ενημέρωσης κάθε" +msgid "Enabled" +msgstr "" -#, fuzzy -msgid "Force-time unit" -msgstr "Μονάδα χρόνου εξαναγκαστικής ενημέρωσης" +msgid "Error" +msgstr "" -msgid "Hostname" -msgstr "Όνομα υπολογιστή" +msgid "Error Retry Counter" +msgstr "" + +msgid "Error Retry Interval" +msgstr "" + +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Διεπαφή" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Δίκτυο" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Κωδικός πρόσβασης" -msgid "Service" -msgstr "Υπηρεσία" +msgid "Path to CA-Certificate" +msgstr "" -#, fuzzy -msgid "Source of IP address" -msgstr "Πηγή της διεύθυνσης IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Όνομα χρήστη" -msgid "custom" -msgstr "προσαρμοσμένο" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Έλεγχος για αλλαγή IP κάθε" + +#~ msgid "Check-time unit" +#~ msgstr "Μονάδα χρόνου ελέγχου" + +#~ msgid "Enable" +#~ msgstr "Ενεργοποίηση" + +#~ msgid "Force update every" +#~ msgstr "Εξαναγκασμός ενημέρωσης κάθε" + +#, fuzzy +#~ msgid "Force-time unit" +#~ msgstr "Μονάδα χρόνου εξαναγκαστικής ενημέρωσης" + +#~ msgid "Hostname" +#~ msgstr "Όνομα υπολογιστή" + +#~ msgid "Service" +#~ msgstr "Υπηρεσία" + +#, fuzzy +#~ msgid "Source of IP address" +#~ msgstr "Πηγή της διεύθυνσης IP" + +#~ msgid "custom" +#~ msgstr "προσαρμοσμένο" # Hours -msgid "h" -msgstr "ω" +#~ msgid "h" +#~ msgstr "ω" -msgid "interface" -msgstr "διεπαφή" +#~ msgid "interface" +#~ msgstr "διεπαφή" # Minutes (not minimum) -msgid "min" -msgstr "λεπτά" +#~ msgid "min" +#~ msgstr "λεπτά" -msgid "network" -msgstr "δίκτυο" +#~ msgid "network" +#~ msgstr "δίκτυο" #, fuzzy #~ msgid "ddns_service_updateurl" diff --git a/applications/luci-app-ddns/po/en/ddns.po b/applications/luci-app-ddns/po/en/ddns.po index 66f199ff8..b706fa29e 100644 --- a/applications/luci-app-ddns/po/en/ddns.po +++ b/applications/luci-app-ddns/po/en/ddns.po @@ -12,15 +12,154 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -msgid "Check for changed IP every" -msgstr "Check for changed IP every" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Check-time unit" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Custom update-URL" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Dynamic DNS" @@ -31,55 +170,530 @@ msgstr "" "Dynamic DNS allows that your router can be reached with a fixed hostname " "while having a dynamically changing IP address." -msgid "Enable" -msgstr "Enable" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Force update every" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Force-time unit" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Hostname" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interface" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Network" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Password" -msgid "Service" -msgstr "Service" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Source of IP address" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Username" -msgid "custom" -msgstr "custom" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Check for changed IP every" + +#~ msgid "Check-time unit" +#~ msgstr "Check-time unit" + +#~ msgid "Enable" +#~ msgstr "Enable" + +#~ msgid "Force update every" +#~ msgstr "Force update every" + +#~ msgid "Force-time unit" +#~ msgstr "Force-time unit" + +#~ msgid "Hostname" +#~ msgstr "Hostname" + +#~ msgid "Service" +#~ msgstr "Service" + +#~ msgid "Source of IP address" +#~ msgstr "Source of IP address" + +#~ msgid "custom" +#~ msgstr "custom" # Hours -msgid "h" -msgstr "h" +#~ msgid "h" +#~ msgstr "h" -msgid "interface" -msgstr "interface" +#~ msgid "interface" +#~ msgstr "interface" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "network" +#~ msgid "network" +#~ msgstr "network" #~ msgid "Event interface" #~ msgstr "Event interface" diff --git a/applications/luci-app-ddns/po/es/ddns.po b/applications/luci-app-ddns/po/es/ddns.po index 2eb721016..1948155d2 100644 --- a/applications/luci-app-ddns/po/es/ddns.po +++ b/applications/luci-app-ddns/po/es/ddns.po @@ -13,15 +13,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Verificar cambios de IP cada" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Unidad de tiempo" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "URL de actualización personalizada" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS dinámico" @@ -32,55 +171,530 @@ msgstr "" "DNS Dinámico le permite conectar a su router con un nombre concreto aunque " "su dirección IP cambie dinámicamente." -msgid "Enable" -msgstr "Activar" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Forzar actualización cada" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Unidad de tiempo" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Nombre de máquina" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interfaz" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Red" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Contraseña" -msgid "Service" -msgstr "Servicio" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Dirección IP de origen" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Nombre de usuario" -msgid "custom" -msgstr "personalizado" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Verificar cambios de IP cada" + +#~ msgid "Check-time unit" +#~ msgstr "Unidad de tiempo" + +#~ msgid "Enable" +#~ msgstr "Activar" + +#~ msgid "Force update every" +#~ msgstr "Forzar actualización cada" + +#~ msgid "Force-time unit" +#~ msgstr "Unidad de tiempo" + +#~ msgid "Hostname" +#~ msgstr "Nombre de máquina" + +#~ msgid "Service" +#~ msgstr "Servicio" + +#~ msgid "Source of IP address" +#~ msgstr "Dirección IP de origen" + +#~ msgid "custom" +#~ msgstr "personalizado" # Hours -msgid "h" -msgstr "h" +#~ msgid "h" +#~ msgstr "h" -msgid "interface" -msgstr "interfaz" +#~ msgid "interface" +#~ msgstr "interfaz" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "red" +#~ msgid "network" +#~ msgstr "red" #~ msgid "Event interface" #~ msgstr "Interfaz de eventos" diff --git a/applications/luci-app-ddns/po/fr/ddns.po b/applications/luci-app-ddns/po/fr/ddns.po index 13615a8e7..94b61b695 100644 --- a/applications/luci-app-ddns/po/fr/ddns.po +++ b/applications/luci-app-ddns/po/fr/ddns.po @@ -13,15 +13,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Vérifier si l'adresse IP a changé toutes les" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Unité de temps pour la vérification" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "URL de mise à jour personnalisée" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS Dynamique" @@ -32,55 +171,530 @@ msgstr "" "Le DNS Dynamique permet au routeur d'être joint avec un nom d'hôte fixe bien " "que changeant dynamiquement d'adresse IP." -msgid "Enable" -msgstr "Activer" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Vérification forcée toutes les" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Unité de temps pour la vérification forcée" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Nom d'hôte" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interface" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Réseau" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Mot de passe" -msgid "Service" -msgstr "Service" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Source de l'adresse IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Nom d'utilisateur" -msgid "custom" -msgstr "personnalisé" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Vérifier si l'adresse IP a changé toutes les" + +#~ msgid "Check-time unit" +#~ msgstr "Unité de temps pour la vérification" + +#~ msgid "Enable" +#~ msgstr "Activer" + +#~ msgid "Force update every" +#~ msgstr "Vérification forcée toutes les" + +#~ msgid "Force-time unit" +#~ msgstr "Unité de temps pour la vérification forcée" + +#~ msgid "Hostname" +#~ msgstr "Nom d'hôte" + +#~ msgid "Service" +#~ msgstr "Service" + +#~ msgid "Source of IP address" +#~ msgstr "Source de l'adresse IP" + +#~ msgid "custom" +#~ msgstr "personnalisé" # Hours -msgid "h" -msgstr "h" +#~ msgid "h" +#~ msgstr "h" -msgid "interface" -msgstr "interface" +#~ msgid "interface" +#~ msgstr "interface" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "réseau" +#~ msgid "network" +#~ msgstr "réseau" #~ msgid "Event interface" #~ msgstr "Événement sur l'interface" diff --git a/applications/luci-app-ddns/po/he/ddns.po b/applications/luci-app-ddns/po/he/ddns.po index 8c23c090e..a6d20303b 100644 --- a/applications/luci-app-ddns/po/he/ddns.po +++ b/applications/luci-app-ddns/po/he/ddns.po @@ -15,16 +15,155 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "בצע בדיקה ל- IP שהתחלף כל" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "בדוק-יחידת זמן" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" #, fuzzy msgid "Custom update-URL" msgstr "עדכן URL באופן ידני" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS דינאמי" @@ -35,53 +174,525 @@ msgstr "" "שירות DDNS מאפשר גישה לנתב שלך ע\"י שם דומיין קבוע, בעוד כתובת ה- IP שלך " "משתנה באופן דינמי." -msgid "Enable" -msgstr "אפשר" +msgid "Enable secure communication with DDNS provider" +msgstr "" -msgid "Force update every" -msgstr "אלץ עדכון כל" +msgid "Enabled" +msgstr "" -#, fuzzy -msgid "Force-time unit" -msgstr "יחידת זמן של אילוץ" +msgid "Error" +msgstr "" + +msgid "Error Retry Counter" +msgstr "" + +msgid "Error Retry Interval" +msgstr "" + +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" -msgid "Hostname" +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" msgstr "" msgid "Interface" msgstr "ממשק" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "רשת" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "סיסמא" -msgid "Service" -msgstr "שירות" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "מקור כתובת IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "שם משתמש" -msgid "custom" -msgstr "מותאם אישית" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "בצע בדיקה ל- IP שהתחלף כל" + +#~ msgid "Check-time unit" +#~ msgstr "בדוק-יחידת זמן" + +#~ msgid "Enable" +#~ msgstr "אפשר" + +#~ msgid "Force update every" +#~ msgstr "אלץ עדכון כל" + +#, fuzzy +#~ msgid "Force-time unit" +#~ msgstr "יחידת זמן של אילוץ" + +#~ msgid "Service" +#~ msgstr "שירות" + +#~ msgid "Source of IP address" +#~ msgstr "מקור כתובת IP" + +#~ msgid "custom" +#~ msgstr "מותאם אישית" # Hours -msgid "h" -msgstr "ש'" +#~ msgid "h" +#~ msgstr "ש'" -msgid "interface" -msgstr "ממשק" +#~ msgid "interface" +#~ msgstr "ממשק" # Minutes (not minimum) -msgid "min" -msgstr "דק'" +#~ msgid "min" +#~ msgstr "דק'" -msgid "network" -msgstr "רשת" +#~ msgid "network" +#~ msgstr "רשת" diff --git a/applications/luci-app-ddns/po/hu/ddns.po b/applications/luci-app-ddns/po/hu/ddns.po index 561b61634..fdd9a17a8 100644 --- a/applications/luci-app-ddns/po/hu/ddns.po +++ b/applications/luci-app-ddns/po/hu/ddns.po @@ -15,15 +15,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "IP-cím változás ellenőrzése minden" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Időegység" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Egyéni update-URL" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Dinamikus DNS" @@ -34,55 +173,530 @@ msgstr "" "A dinamikus DNS lehetővé teszi, hogy a routere elérhető legyen egy fix host " "névvel akkor is ha dinamikusan változó IP címmel rendelkezik." -msgid "Enable" -msgstr "Engedélyezés" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Frissítés erőltetése minden" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Időegység" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Hostnév" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interfész" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Hálózat" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Jelszó" -msgid "Service" -msgstr "Szervíz" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Az IP cím forrása" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Felhasználónév" -msgid "custom" -msgstr "egyéni" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "IP-cím változás ellenőrzése minden" + +#~ msgid "Check-time unit" +#~ msgstr "Időegység" + +#~ msgid "Enable" +#~ msgstr "Engedélyezés" + +#~ msgid "Force update every" +#~ msgstr "Frissítés erőltetése minden" + +#~ msgid "Force-time unit" +#~ msgstr "Időegység" + +#~ msgid "Hostname" +#~ msgstr "Hostnév" + +#~ msgid "Service" +#~ msgstr "Szervíz" + +#~ msgid "Source of IP address" +#~ msgstr "Az IP cím forrása" + +#~ msgid "custom" +#~ msgstr "egyéni" # Hours -msgid "h" -msgstr "óra" +#~ msgid "h" +#~ msgstr "óra" -msgid "interface" -msgstr "interfész" +#~ msgid "interface" +#~ msgstr "interfész" # Minutes (not minimum) -msgid "min" -msgstr "perc" +#~ msgid "min" +#~ msgstr "perc" -msgid "network" -msgstr "hálózat" +#~ msgid "network" +#~ msgstr "hálózat" #~ msgid "Event interface" #~ msgstr "Esemény interfész" diff --git a/applications/luci-app-ddns/po/it/ddns.po b/applications/luci-app-ddns/po/it/ddns.po index 9b16f3991..48e680912 100644 --- a/applications/luci-app-ddns/po/it/ddns.po +++ b/applications/luci-app-ddns/po/it/ddns.po @@ -13,15 +13,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Controlla se cambia l'IP ogni" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Check-time unit" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "URL di aggiornamento personalizzato" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS Dinamico" @@ -32,55 +171,530 @@ msgstr "" "DNS Dinamico permette al tuo router di essere raggiunto con un indirizzo " "statico anche nel caso in cui tu disponga di un indirizzo IP dinamico." -msgid "Enable" -msgstr "Abilita" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Forza aggiornamento ogni" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Unità di tempo per l'aggiornamento" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Nome Host" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interfaccia" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Rete" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Password" -msgid "Service" -msgstr "Servizio" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Origine dell'indirizzo IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Nome Utente" -msgid "custom" -msgstr "personalizzato" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Controlla se cambia l'IP ogni" + +#~ msgid "Check-time unit" +#~ msgstr "Check-time unit" + +#~ msgid "Enable" +#~ msgstr "Abilita" + +#~ msgid "Force update every" +#~ msgstr "Forza aggiornamento ogni" + +#~ msgid "Force-time unit" +#~ msgstr "Unità di tempo per l'aggiornamento" + +#~ msgid "Hostname" +#~ msgstr "Nome Host" + +#~ msgid "Service" +#~ msgstr "Servizio" + +#~ msgid "Source of IP address" +#~ msgstr "Origine dell'indirizzo IP" + +#~ msgid "custom" +#~ msgstr "personalizzato" # Hours -msgid "h" -msgstr "o" +#~ msgid "h" +#~ msgstr "o" -msgid "interface" -msgstr "interfaccia" +#~ msgid "interface" +#~ msgstr "interfaccia" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "rete" +#~ msgid "network" +#~ msgstr "rete" #~ msgid "Event interface" #~ msgstr "Evento interfaccia" diff --git a/applications/luci-app-ddns/po/ja/ddns.po b/applications/luci-app-ddns/po/ja/ddns.po index 66aff8ca4..488bac990 100644 --- a/applications/luci-app-ddns/po/ja/ddns.po +++ b/applications/luci-app-ddns/po/ja/ddns.po @@ -13,15 +13,154 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "IPアドレスが変化したかチェックを行う間隔" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "チェックの時間単位" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "手動アップデート-URL" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "ダイナミックDNS" @@ -32,58 +171,535 @@ msgstr "" "ダイナミックDNSを使用することで、IPアドレスが変更されても固定のホスト名を使っ" "てルーターにアクセスすることができます。" -msgid "Enable" -msgstr "有効" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" + +msgid "Error Retry Counter" +msgstr "" + +msgid "Error Retry Interval" +msgstr "" + +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" -msgid "Force update every" -msgstr "強制的にアップデートを行う間隔" +msgid "Force IP Version" +msgstr "" -msgid "Force-time unit" -msgstr "アップデートの時間単位" +msgid "Force IP Version not supported" +msgstr "" -msgid "Hostname" -msgstr "ホスト名" +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "インターフェース" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "ネットワーク" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "パスワード" -msgid "Service" -msgstr "サービス" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "送信元IPアドレス" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "ユーザー名" -msgid "custom" -msgstr "手動設定" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "IPアドレスが変化したかチェックを行う間隔" + +#~ msgid "Check-time unit" +#~ msgstr "チェックの時間単位" + +#~ msgid "Enable" +#~ msgstr "有効" + +#~ msgid "Force update every" +#~ msgstr "強制的にアップデートを行う間隔" + +#~ msgid "Force-time unit" +#~ msgstr "アップデートの時間単位" + +#~ msgid "Hostname" +#~ msgstr "ホスト名" + +#~ msgid "Service" +#~ msgstr "サービス" + +#~ msgid "Source of IP address" +#~ msgstr "送信元IPアドレス" + +#~ msgid "custom" +#~ msgstr "手動設定" # Hours -msgid "h" -msgstr "時" +#~ msgid "h" +#~ msgstr "時" -msgid "interface" -msgstr "インターフェース" +#~ msgid "interface" +#~ msgstr "インターフェース" # Minutes (not minimum) -msgid "min" -msgstr "分" +#~ msgid "min" +#~ msgstr "分" -msgid "network" -msgstr "ネットワーク" +#~ msgid "network" +#~ msgstr "ネットワーク" #~ msgid "Event interface" #~ msgstr "イベントインターフェース" #~ msgid "On which interface up should start the ddns script process." -#~ msgstr "どのインターフェースが起動した際にddnsスクリプトを開始するか設定してください。" +#~ msgstr "" +#~ "どのインターフェースが起動した際にddnsスクリプトを開始するか設定してくださ" +#~ "い。" diff --git a/applications/luci-app-ddns/po/ms/ddns.po b/applications/luci-app-ddns/po/ms/ddns.po index 7404e255c..5b7f0dea6 100644 --- a/applications/luci-app-ddns/po/ms/ddns.po +++ b/applications/luci-app-ddns/po/ms/ddns.po @@ -13,15 +13,154 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -msgid "Check for changed IP every" +msgid "&" msgstr "" -msgid "Check-time unit" +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" msgid "Custom update-URL" msgstr "" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "" @@ -30,52 +169,486 @@ msgid "" "while having a dynamically changing IP address." msgstr "" -msgid "Enable" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" msgstr "" -msgid "Force update every" +msgid "Error Retry Counter" msgstr "" -msgid "Force-time unit" +msgid "Error Retry Interval" msgstr "" -msgid "Hostname" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" msgstr "" msgid "Interface" msgstr "" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "" -msgid "Service" +msgid "Path to CA-Certificate" +msgstr "" + +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" msgstr "" -msgid "Source of IP address" +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." msgstr "" msgid "URL" msgstr "" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "" -msgid "custom" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" msgstr "" -# Hours -msgid "h" +msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" -msgid "interface" +msgid "unknown error" msgstr "" -# Minutes (not minimum) -msgid "min" +msgid "unspecific error" msgstr "" -msgid "network" +msgid "use hostname, FQDN, IPv4- or IPv6-Address" msgstr "" diff --git a/applications/luci-app-ddns/po/no/ddns.po b/applications/luci-app-ddns/po/no/ddns.po index 50b313a19..b805aa4f8 100644 --- a/applications/luci-app-ddns/po/no/ddns.po +++ b/applications/luci-app-ddns/po/no/ddns.po @@ -4,15 +4,154 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -msgid "Check for changed IP every" -msgstr "Undersøk om IP er endret hver" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Tidsenhet" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Egendefinert oppdaterings-URL" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Dynamisk DNS" @@ -23,50 +162,525 @@ msgstr "" "Dynamisk DNS tillater at enheten kan kontaktes ved hjelp av et fast " "vertsnavn, uavhengig av om IP adressen endres dynamisk." -msgid "Enable" -msgstr "Aktiver" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Tving oppdatering hver" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Tidsenhet" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Vertsnavn" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Grensesnitt" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Nettverk" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Passord" -msgid "Service" -msgstr "Tjeneste" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Kilden til IP adresse" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Brukernavn" -msgid "custom" -msgstr "egendefinert" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Undersøk om IP er endret hver" + +#~ msgid "Check-time unit" +#~ msgstr "Tidsenhet" + +#~ msgid "Enable" +#~ msgstr "Aktiver" + +#~ msgid "Force update every" +#~ msgstr "Tving oppdatering hver" + +#~ msgid "Force-time unit" +#~ msgstr "Tidsenhet" + +#~ msgid "Hostname" +#~ msgstr "Vertsnavn" + +#~ msgid "Service" +#~ msgstr "Tjeneste" + +#~ msgid "Source of IP address" +#~ msgstr "Kilden til IP adresse" + +#~ msgid "custom" +#~ msgstr "egendefinert" -msgid "h" -msgstr "timer" +#~ msgid "h" +#~ msgstr "timer" -msgid "interface" -msgstr "grensesnitt" +#~ msgid "interface" +#~ msgstr "grensesnitt" -msgid "min" -msgstr "minutter" +#~ msgid "min" +#~ msgstr "minutter" -msgid "network" -msgstr "nettverk" +#~ msgid "network" +#~ msgstr "nettverk" diff --git a/applications/luci-app-ddns/po/pl/ddns.po b/applications/luci-app-ddns/po/pl/ddns.po index 390978304..e016cc4a4 100644 --- a/applications/luci-app-ddns/po/pl/ddns.po +++ b/applications/luci-app-ddns/po/pl/ddns.po @@ -14,15 +14,154 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Sprawdzaj zmiany adresu IP co" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Jednostka czasu sprawdzania" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Niestandardowy adres aktualizacyjny" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Dynamiczny DNS" @@ -33,55 +172,530 @@ msgstr "" "Dynamiczny DNS umożliwia dostęp do routera z użyciem stałej nazwy hosta, " "pomimo posiadania dynamicznie zmieniającego się adresu IP." -msgid "Enable" -msgstr "Włącz" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Wymuszaj aktualizację co" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Jednostka czasu wymuszania" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Nazwa hosta" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interfejs" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Sieć" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Hasło" -msgid "Service" -msgstr "Usługa" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Źródło adresu IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Nazwa użytkownika" -msgid "custom" -msgstr "niestandardowe" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Sprawdzaj zmiany adresu IP co" + +#~ msgid "Check-time unit" +#~ msgstr "Jednostka czasu sprawdzania" + +#~ msgid "Enable" +#~ msgstr "Włącz" + +#~ msgid "Force update every" +#~ msgstr "Wymuszaj aktualizację co" + +#~ msgid "Force-time unit" +#~ msgstr "Jednostka czasu wymuszania" + +#~ msgid "Hostname" +#~ msgstr "Nazwa hosta" + +#~ msgid "Service" +#~ msgstr "Usługa" + +#~ msgid "Source of IP address" +#~ msgstr "Źródło adresu IP" + +#~ msgid "custom" +#~ msgstr "niestandardowe" # Hours -msgid "h" -msgstr "godz." +#~ msgid "h" +#~ msgstr "godz." -msgid "interface" -msgstr "interfejs" +#~ msgid "interface" +#~ msgstr "interfejs" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "sieć" +#~ msgid "network" +#~ msgstr "sieć" #~ msgid "Event interface" #~ msgstr "Interfejs" diff --git a/applications/luci-app-ddns/po/pt-br/ddns.po b/applications/luci-app-ddns/po/pt-br/ddns.po index 49fa5ceed..df2fff538 100644 --- a/applications/luci-app-ddns/po/pt-br/ddns.po +++ b/applications/luci-app-ddns/po/pt-br/ddns.po @@ -13,15 +13,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Verifique por alterações no endereço IP a cada" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Unidade de tempo para verificação" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "URL para atualização personalizada" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS Dinâmico" @@ -32,59 +171,535 @@ msgstr "" "O DNS dinâmico permite que o seu roteador possa ser encontrado a partir de " "um nome fixo, mesmo usando um Endereço IP dinâmico." -msgid "Enable" -msgstr "Habilitar" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Forçar atualização a cada" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Unidade de tempo para atualização forçada" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Nome do computador" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interface" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Rede" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Senha" -msgid "Service" -msgstr "Serviço" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Origem do Endereço IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Usuário" -msgid "custom" -msgstr "personalizado" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Verifique por alterações no endereço IP a cada" + +#~ msgid "Check-time unit" +#~ msgstr "Unidade de tempo para verificação" + +#~ msgid "Enable" +#~ msgstr "Habilitar" + +#~ msgid "Force update every" +#~ msgstr "Forçar atualização a cada" + +#~ msgid "Force-time unit" +#~ msgstr "Unidade de tempo para atualização forçada" + +#~ msgid "Hostname" +#~ msgstr "Nome do computador" + +#~ msgid "Service" +#~ msgstr "Serviço" + +#~ msgid "Source of IP address" +#~ msgstr "Origem do Endereço IP" + +#~ msgid "custom" +#~ msgstr "personalizado" # Hours -msgid "h" -msgstr "h" +#~ msgid "h" +#~ msgstr "h" -msgid "interface" -msgstr "interface" +#~ msgid "interface" +#~ msgstr "interface" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "rede" +#~ msgid "network" +#~ msgstr "rede" #~ msgid "Event interface" #~ msgstr "Interface de eventos" #~ msgid "On which interface up should start the ddns script process." #~ msgstr "" -#~ "Na subida de qual interface que o processo do script ddns deve ser iniciado" +#~ "Na subida de qual interface que o processo do script ddns deve ser " +#~ "iniciado" diff --git a/applications/luci-app-ddns/po/pt/ddns.po b/applications/luci-app-ddns/po/pt/ddns.po index 748097e52..57654928d 100644 --- a/applications/luci-app-ddns/po/pt/ddns.po +++ b/applications/luci-app-ddns/po/pt/ddns.po @@ -13,17 +13,155 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Intervalo para verificação de alteração do endereço IP" +msgid "&" +msgstr "" -#, fuzzy -msgid "Check-time unit" -msgstr "Unidade de tempo para verificação" +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" #, fuzzy msgid "Custom update-URL" msgstr "URL para actualização personalizada" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS Dinâmico" @@ -35,59 +173,536 @@ msgstr "" "O DNS dinâmico permite que o seu router possa ser encontrado a partir de um " "hostname fixo, mesmo usando um Endereço IP dinâmico." -msgid "Enable" -msgstr "Ativar" +msgid "Enable secure communication with DDNS provider" +msgstr "" -msgid "Force update every" -msgstr "Forçar actualização a cada" +msgid "Enabled" +msgstr "" -#, fuzzy -msgid "Force-time unit" -msgstr "Unidade de tempo para actualização forçada" +msgid "Error" +msgstr "" + +msgid "Error Retry Counter" +msgstr "" -msgid "Hostname" -msgstr "Nome de Host" +msgid "Error Retry Interval" +msgstr "" + +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interface" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Rede" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Password" -msgid "Service" -msgstr "Serviço" +msgid "Path to CA-Certificate" +msgstr "" + +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" -msgid "Source of IP address" -msgstr "Origem do Endereço IP" +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Nome de Utilizador" -msgid "custom" -msgstr "personalizado" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Intervalo para verificação de alteração do endereço IP" + +#, fuzzy +#~ msgid "Check-time unit" +#~ msgstr "Unidade de tempo para verificação" + +#~ msgid "Enable" +#~ msgstr "Ativar" + +#~ msgid "Force update every" +#~ msgstr "Forçar actualização a cada" + +#, fuzzy +#~ msgid "Force-time unit" +#~ msgstr "Unidade de tempo para actualização forçada" + +#~ msgid "Hostname" +#~ msgstr "Nome de Host" + +#~ msgid "Service" +#~ msgstr "Serviço" + +#~ msgid "Source of IP address" +#~ msgstr "Origem do Endereço IP" + +#~ msgid "custom" +#~ msgstr "personalizado" # Hours -msgid "h" -msgstr "h" +#~ msgid "h" +#~ msgstr "h" -msgid "interface" -msgstr "interface" +#~ msgid "interface" +#~ msgstr "interface" # Minutes (not minimum) -msgid "min" -msgstr "min" +#~ msgid "min" +#~ msgstr "min" -msgid "network" -msgstr "rede" +#~ msgid "network" +#~ msgstr "rede" #~ msgid "Event interface" #~ msgstr "Interface do evento" #~ msgid "On which interface up should start the ddns script process." -#~ msgstr "Em que interface deve ser iniciado o script para o processo de ddns." +#~ msgstr "" +#~ "Em que interface deve ser iniciado o script para o processo de ddns." diff --git a/applications/luci-app-ddns/po/ro/ddns.po b/applications/luci-app-ddns/po/ro/ddns.po index 535b21ed7..78c39d5e9 100644 --- a/applications/luci-app-ddns/po/ro/ddns.po +++ b/applications/luci-app-ddns/po/ro/ddns.po @@ -16,15 +16,154 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Verifica pentru adresa IP schimbata la fiecare" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Unitatea de verificare timp" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Adresa particularizata de actualizare" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "DNS dinamic" @@ -35,55 +174,530 @@ msgstr "" "DNS-ul dinamic permite accesarea routerului printr-un nume dns fix legat de " "adresa dinamic IP." -msgid "Enable" -msgstr "Activeaza" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Forteaza actualizarea la fiecare" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Unitatea de timp la fortare actualizare" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Nume host" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Interfata" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Retea" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Parola" -msgid "Service" -msgstr "Serviciu" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Sursa adresei IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Utilizator" -msgid "custom" -msgstr "particularizat" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Verifica pentru adresa IP schimbata la fiecare" + +#~ msgid "Check-time unit" +#~ msgstr "Unitatea de verificare timp" + +#~ msgid "Enable" +#~ msgstr "Activeaza" + +#~ msgid "Force update every" +#~ msgstr "Forteaza actualizarea la fiecare" + +#~ msgid "Force-time unit" +#~ msgstr "Unitatea de timp la fortare actualizare" + +#~ msgid "Hostname" +#~ msgstr "Nume host" + +#~ msgid "Service" +#~ msgstr "Serviciu" + +#~ msgid "Source of IP address" +#~ msgstr "Sursa adresei IP" + +#~ msgid "custom" +#~ msgstr "particularizat" # Hours -msgid "h" -msgstr "ore" +#~ msgid "h" +#~ msgstr "ore" -msgid "interface" -msgstr "interfata" +#~ msgid "interface" +#~ msgstr "interfata" # Minutes (not minimum) -msgid "min" -msgstr "minut(e)" +#~ msgid "min" +#~ msgstr "minut(e)" -msgid "network" -msgstr "retea" +#~ msgid "network" +#~ msgstr "retea" #~ msgid "Event interface" #~ msgstr "Interfata eveniment" diff --git a/applications/luci-app-ddns/po/ru/ddns.po b/applications/luci-app-ddns/po/ru/ddns.po index eda11d819..d4c0eb4a8 100644 --- a/applications/luci-app-ddns/po/ru/ddns.po +++ b/applications/luci-app-ddns/po/ru/ddns.po @@ -15,15 +15,154 @@ msgstr "" "X-Generator: Pootle 2.0.4\n" "X-Poedit-SourceCharset: UTF-8\n" -msgid "Check for changed IP every" -msgstr "Проверять, изменился ли IP адрес каждые" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Единица измерения проверки" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Пользовательский URL обновления" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Динамический DNS" @@ -34,55 +173,530 @@ msgstr "" "Динамический DNS позволяет вашему маршрутизатору иметь постоянное доменное " "имя при динамическом IP-адресе." -msgid "Enable" -msgstr "Включить" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Принудительно обновлять каждые" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Единица измерения обновления" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Имя хоста" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Интерфейс" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Сеть" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Пароль" -msgid "Service" -msgstr "Сервис" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Источник IP-адреса" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Имя пользователя" -msgid "custom" -msgstr "пользовательский" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Проверять, изменился ли IP адрес каждые" + +#~ msgid "Check-time unit" +#~ msgstr "Единица измерения проверки" + +#~ msgid "Enable" +#~ msgstr "Включить" + +#~ msgid "Force update every" +#~ msgstr "Принудительно обновлять каждые" + +#~ msgid "Force-time unit" +#~ msgstr "Единица измерения обновления" + +#~ msgid "Hostname" +#~ msgstr "Имя хоста" + +#~ msgid "Service" +#~ msgstr "Сервис" + +#~ msgid "Source of IP address" +#~ msgstr "Источник IP-адреса" + +#~ msgid "custom" +#~ msgstr "пользовательский" # Hours -msgid "h" -msgstr "ч" +#~ msgid "h" +#~ msgstr "ч" -msgid "interface" -msgstr "интерфейс" +#~ msgid "interface" +#~ msgstr "интерфейс" # Minutes (not minimum) -msgid "min" -msgstr "мин" +#~ msgid "min" +#~ msgstr "мин" -msgid "network" -msgstr "сеть" +#~ msgid "network" +#~ msgstr "сеть" #~ msgid "Event interface" #~ msgstr "Интерфейс события" diff --git a/applications/luci-app-ddns/po/sk/ddns.po b/applications/luci-app-ddns/po/sk/ddns.po index a3e29c635..3cd0f4c2c 100644 --- a/applications/luci-app-ddns/po/sk/ddns.po +++ b/applications/luci-app-ddns/po/sk/ddns.po @@ -8,15 +8,154 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -msgid "Check for changed IP every" +msgid "&" msgstr "" -msgid "Check-time unit" +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" msgid "Custom update-URL" msgstr "" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "" @@ -25,50 +164,486 @@ msgid "" "while having a dynamically changing IP address." msgstr "" -msgid "Enable" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" msgstr "" -msgid "Force update every" +msgid "Error Retry Counter" msgstr "" -msgid "Force-time unit" +msgid "Error Retry Interval" msgstr "" -msgid "Hostname" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" msgstr "" msgid "Interface" msgstr "" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "" -msgid "Service" +msgid "Path to CA-Certificate" +msgstr "" + +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" msgstr "" -msgid "Source of IP address" +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." msgstr "" msgid "URL" msgstr "" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "" -msgid "custom" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" msgstr "" -msgid "h" +msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" -msgid "interface" +msgid "unknown error" msgstr "" -msgid "min" +msgid "unspecific error" msgstr "" -msgid "network" +msgid "use hostname, FQDN, IPv4- or IPv6-Address" msgstr "" diff --git a/applications/luci-app-ddns/po/sv/ddns.po b/applications/luci-app-ddns/po/sv/ddns.po index 0c6e46f66..cee36e725 100644 --- a/applications/luci-app-ddns/po/sv/ddns.po +++ b/applications/luci-app-ddns/po/sv/ddns.po @@ -9,15 +9,154 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Check for changed IP every" +msgid "&" msgstr "" -msgid "Check-time unit" +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" msgid "Custom update-URL" msgstr "" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "" @@ -26,50 +165,486 @@ msgid "" "while having a dynamically changing IP address." msgstr "" -msgid "Enable" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" msgstr "" -msgid "Force update every" +msgid "Error Retry Counter" msgstr "" -msgid "Force-time unit" +msgid "Error Retry Interval" msgstr "" -msgid "Hostname" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" msgstr "" msgid "Interface" msgstr "" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "" -msgid "Service" +msgid "Path to CA-Certificate" +msgstr "" + +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" msgstr "" -msgid "Source of IP address" +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." msgstr "" msgid "URL" msgstr "" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "" -msgid "custom" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" msgstr "" -msgid "h" +msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" -msgid "interface" +msgid "unknown error" msgstr "" -msgid "min" +msgid "unspecific error" msgstr "" -msgid "network" +msgid "use hostname, FQDN, IPv4- or IPv6-Address" msgstr "" diff --git a/applications/luci-app-ddns/po/templates/ddns.pot b/applications/luci-app-ddns/po/templates/ddns.pot index 4b983cec1..6e4f2fe08 100644 --- a/applications/luci-app-ddns/po/templates/ddns.pot +++ b/applications/luci-app-ddns/po/templates/ddns.pot @@ -7,9 +7,15 @@ msgstr "" msgid "-- custom --" msgstr "" +msgid "-- default --" +msgstr "" + msgid "Advanced Settings" msgstr "" +msgid "Allow non-public IP's" +msgstr "" + msgid "Applying changes" msgstr "" @@ -23,8 +29,12 @@ msgstr "" msgid "" "Below is a list of configured DDNS configurations and their current state." -"<br />If you want to send updates for IPv4 and IPv6 you need to define two " -"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" msgstr "" msgid "" @@ -37,6 +47,9 @@ msgid "" "UDP when requesting DNS server" msgstr "" +msgid "Casual users should not change this setting" +msgstr "" + msgid "Check Interval" msgstr "" @@ -49,7 +62,15 @@ msgstr "" msgid "Configuration" msgstr "" -msgid "Configure here the details for selected Dynamic DNS service" +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" msgstr "" msgid "" @@ -84,6 +105,9 @@ msgstr "" msgid "DNS-Server" msgstr "" +msgid "Date format" +msgstr "" + msgid "Defines the Web page to read systems IPv4-Address from" msgstr "" @@ -115,6 +139,13 @@ msgstr "" msgid "Details for" msgstr "" +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + msgid "Disabled" msgstr "" @@ -158,6 +189,12 @@ msgid "" "run DDNS scripts with all options" msgstr "" +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + msgid "Force IP Version" msgstr "" @@ -179,6 +216,14 @@ msgstr "" msgid "Format: IP or FQDN" msgstr "" +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + msgid "HTTPS not supported" msgstr "" @@ -212,12 +257,20 @@ msgstr "" msgid "IPv6-Address" msgstr "" +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + msgid "" "If this service section is disabled it could not be started.<br />Neither " "from LuCI interface nor from console" msgstr "" msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" @@ -238,6 +291,9 @@ msgid "" "Interval' except '0' are not supported" msgstr "" +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + msgid "Last Update" msgstr "" @@ -247,6 +303,12 @@ msgstr "" msgid "Log File Viewer" msgstr "" +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + msgid "Log to file" msgstr "" @@ -254,6 +316,11 @@ msgid "Log to syslog" msgstr "" msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" "Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " "protocol." msgstr "" @@ -276,22 +343,28 @@ msgstr "" msgid "No logging" msgstr "" +msgid "Non-public and by default blocked IP's" +msgstr "" + msgid "Notice" msgstr "" +msgid "Number of last lines stored in log files" +msgstr "" + msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -msgid "OPTIONAL: Proxy-Server for detection and updates." +msgid "OPTIONAL: Network to use for communication" msgstr "" -msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -msgid "Old version of ddns-scripts installed" +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" msgid "On Error the script will retry the failed action after given time" @@ -360,6 +433,9 @@ msgstr "" msgid "Start / Stop" msgstr "" +msgid "Status directory" +msgstr "" + msgid "Stopped" msgstr "" @@ -374,6 +450,12 @@ msgstr "" msgid "Timer Settings" msgstr "" +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" + msgid "URL" msgstr "" @@ -394,6 +476,9 @@ msgstr "" msgid "Use HTTP Secure" msgstr "" +msgid "Use cURL" +msgstr "" + msgid "User defined script to read systems IP-Address" msgstr "" @@ -430,6 +515,9 @@ msgstr "" msgid "You should install GNU Wget with SSL (prefered) or cURL package." msgstr "" +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + msgid "You should install GNU Wget with SSL or replace libcurl." msgstr "" @@ -463,10 +551,10 @@ msgstr "" msgid "file or directory not found or not 'IGNORE'" msgstr "" -msgid "hours" +msgid "help" msgstr "" -msgid "install update here" +msgid "hours" msgstr "" msgid "installed" @@ -529,6 +617,9 @@ msgstr "" msgid "please select 'IPv4' address version in" msgstr "" +msgid "please set to 'default'" +msgstr "" + msgid "proxy port missing" msgstr "" diff --git a/applications/luci-app-ddns/po/tr/ddns.po b/applications/luci-app-ddns/po/tr/ddns.po index 0d0e97eeb..10492bccc 100644 --- a/applications/luci-app-ddns/po/tr/ddns.po +++ b/applications/luci-app-ddns/po/tr/ddns.po @@ -15,15 +15,154 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" +msgid "&" msgstr "" -msgid "Check-time unit" +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" msgid "Custom update-URL" msgstr "" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "" @@ -32,53 +171,499 @@ msgid "" "while having a dynamically changing IP address." msgstr "" -msgid "Enable" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" msgstr "" -msgid "Force update every" +msgid "Error Retry Counter" msgstr "" -msgid "Force-time unit" +msgid "Error Retry Interval" msgstr "" -msgid "Hostname" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" msgstr "" msgid "Interface" msgstr "Arabirim" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Ağ" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Parola" -msgid "Service" -msgstr "Servis" +msgid "Path to CA-Certificate" +msgstr "" + +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" -msgid "Source of IP address" -msgstr "Ip adresi kaynağı" +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Kullanıcı adı" -msgid "custom" +msgid "Verify" msgstr "" -# Hours -msgid "h" +msgid "Version" msgstr "" -# "arayüz" olarakta kullanılabilir. -msgid "interface" -msgstr "arabirim" +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" -# Minutes (not minimum) -msgid "min" +msgid "Warning" msgstr "" -msgid "network" -msgstr "ağ" +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Service" +#~ msgstr "Servis" + +#~ msgid "Source of IP address" +#~ msgstr "Ip adresi kaynağı" + +# "arayüz" olarakta kullanılabilir. +#~ msgid "interface" +#~ msgstr "arabirim" + +#~ msgid "network" +#~ msgstr "ağ" diff --git a/applications/luci-app-ddns/po/uk/ddns.po b/applications/luci-app-ddns/po/uk/ddns.po index ba94cdfff..0e2c5804a 100644 --- a/applications/luci-app-ddns/po/uk/ddns.po +++ b/applications/luci-app-ddns/po/uk/ddns.po @@ -16,15 +16,154 @@ msgstr "" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "Перевіряти, чи змінилася IP-адреса кожні" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "Одиниця часу перевірки" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "Користувацький URL оновлення" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Динамічний DNS" @@ -35,55 +174,530 @@ msgstr "" "Динамічний DNS дозволяє вашому маршрутизатору бути доступним за фіксованим " "доменним ім'ям, маючи динамічну IP-адресу." -msgid "Enable" -msgstr "Увімкнути" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" -msgid "Force update every" -msgstr "Примусово оновлювати кожні" +msgid "Error Retry Counter" +msgstr "" -msgid "Force-time unit" -msgstr "Одиниця часу оновлення" +msgid "Error Retry Interval" +msgstr "" -msgid "Hostname" -msgstr "Ім'я вузла" +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "Інтерфейс" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "Мережа" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "Пароль" -msgid "Service" -msgstr "Сервіс" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "Джерело IP-адреси" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "Ім'я користувача" -msgid "custom" -msgstr "користувацький" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Перевіряти, чи змінилася IP-адреса кожні" + +#~ msgid "Check-time unit" +#~ msgstr "Одиниця часу перевірки" + +#~ msgid "Enable" +#~ msgstr "Увімкнути" + +#~ msgid "Force update every" +#~ msgstr "Примусово оновлювати кожні" + +#~ msgid "Force-time unit" +#~ msgstr "Одиниця часу оновлення" + +#~ msgid "Hostname" +#~ msgstr "Ім'я вузла" + +#~ msgid "Service" +#~ msgstr "Сервіс" + +#~ msgid "Source of IP address" +#~ msgstr "Джерело IP-адреси" + +#~ msgid "custom" +#~ msgstr "користувацький" # Hours -msgid "h" -msgstr "г" +#~ msgid "h" +#~ msgstr "г" -msgid "interface" -msgstr "інтерфейс" +#~ msgid "interface" +#~ msgstr "інтерфейс" # Minutes (not minimum) -msgid "min" -msgstr "хв" +#~ msgid "min" +#~ msgstr "хв" -msgid "network" -msgstr "мережа" +#~ msgid "network" +#~ msgstr "мережа" #~ msgid "Event interface" #~ msgstr "Інтерфейс події" diff --git a/applications/luci-app-ddns/po/vi/ddns.po b/applications/luci-app-ddns/po/vi/ddns.po index d8fa832a0..5d5a7ede7 100644 --- a/applications/luci-app-ddns/po/vi/ddns.po +++ b/applications/luci-app-ddns/po/vi/ddns.po @@ -14,17 +14,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Check for changed IP every" -msgstr "Kiểm tra mỗi thay đổi IP" +msgid "&" +msgstr "" -#, fuzzy -msgid "Check-time unit" -msgstr "Đơn vị kiểm tra thời gian" +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" + +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" #, fuzzy msgid "Custom update-URL" msgstr "Tùy chỉnh cập nhật - URL" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "Dynamic DNS" @@ -36,54 +174,504 @@ msgstr "" "Dynamic DNS cho phép bộ định tuyến có thể được đạt đến với một hostname cố " "định, trong khi có một địa chỉ AP thay đổi năng động." -msgid "Enable" +msgid "Enable secure communication with DDNS provider" msgstr "" -msgid "Force update every" -msgstr "Buộc cập nhật mỗi" +msgid "Enabled" +msgstr "" -#, fuzzy -msgid "Force-time unit" -msgstr "Force-đơn vị thời gian" +msgid "Error" +msgstr "" + +msgid "Error Retry Counter" +msgstr "" -msgid "Hostname" +msgid "Error Retry Interval" +msgstr "" + +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" + +msgid "Force IP Version" +msgstr "" + +msgid "Force IP Version not supported" +msgstr "" + +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" msgstr "" msgid "Interface" msgstr "" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "" -msgid "Service" +msgid "Path to CA-Certificate" msgstr "" -#, fuzzy -msgid "Source of IP address" -msgstr "Nguồn của địa chỉ IP" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "" -msgid "custom" +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Version Information" msgstr "" -# Hours -msgid "h" +msgid "Waiting for changes to be applied..." msgstr "" -msgid "interface" +msgid "Warning" msgstr "" -# Minutes (not minimum) -msgid "min" +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" msgstr "" -msgid "network" +msgid "please select 'IPv4' address version in" msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "Kiểm tra mỗi thay đổi IP" + +#, fuzzy +#~ msgid "Check-time unit" +#~ msgstr "Đơn vị kiểm tra thời gian" + +#~ msgid "Force update every" +#~ msgstr "Buộc cập nhật mỗi" + +#, fuzzy +#~ msgid "Force-time unit" +#~ msgstr "Force-đơn vị thời gian" + +#, fuzzy +#~ msgid "Source of IP address" +#~ msgstr "Nguồn của địa chỉ IP" diff --git a/applications/luci-app-ddns/po/zh-cn/ddns.po b/applications/luci-app-ddns/po/zh-cn/ddns.po index ad4cbaddc..862c2a052 100644 --- a/applications/luci-app-ddns/po/zh-cn/ddns.po +++ b/applications/luci-app-ddns/po/zh-cn/ddns.po @@ -1,88 +1,601 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-02 13:44+0100\n" -"PO-Revision-Date: 2013-10-08 15:59+0200\n" -"Last-Translator: Tanyingyu <Tanyingyu@163.com>\n" -"Language-Team: QQ Group 75543259\n" +"PO-Revision-Date: 2015-04-23 13:00+0800\n" +"Last-Translator: Syrone Wong <wong.syrone@gmail.com>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.0.6\n" +"X-Generator: Poedit 1.7.5\n" -msgid "Check for changed IP every" -msgstr "检查IP变动的时间间隔" +msgid "-- custom --" +msgstr "-- 自定义 --" -msgid "Check-time unit" -msgstr "时间单位" +msgid "-- default --" +msgstr "-- 默认 --" + +msgid "Advanced Settings" +msgstr "高级设置" + +msgid "Allow non-public IP's" +msgstr "允许非公网IP" + +msgid "Applying changes" +msgstr "正在应用更改" + +msgid "Basic Settings" +msgstr "基础设置" + +msgid "Below a list of configuration tips for your system to run Dynamic DNS updates without limitations" +msgstr "以下是一个能够让你的系统不受限制地进行动态DNS更新的设置贴士." + +msgid "Below is a list of configured DDNS configurations and their current state." +msgstr "一下是当前已经配置好的DDNS设置项列表以及它们的当前状态." + +msgid "Bind Network" +msgstr "使用的接口" + +msgid "Binding to a specific network not supported" +msgstr "不支持绑定到一个指定的网络" + +msgid "BusyBox's nslookup and Wget do not support to specify the IP version to use for communication with DDNS Provider." +msgstr "与DDNS供应商通讯时BusyBox的nslookup和Wget不支持设置特定的IP协议版本." + +msgid "BusyBox's nslookup does not support to specify to use TCP instead of default UDP when requesting DNS server" +msgstr "BusyBox的nslookup不支持使用TCP协议代替UDP协议请求DNS记录" + +msgid "Casual users should not change this setting" +msgstr "普通用户不应该改变这个设置" + +msgid "Check Interval" +msgstr "检查时间周期" + +msgid "Collecting data..." +msgstr "正在收集数据..." + +msgid "Config error" +msgstr "配置错误" + +msgid "Configuration" +msgstr "设置" + +msgid "Configure here the details for all Dynamic DNS services including this LuCI application." +msgstr "在这里修改动态DNS服务的详细配置" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "在这里修改选择的DDNS服务的详细配置" + +msgid "Current setting" +msgstr "当前设置" + +msgid "Currently DDNS updates are not started at boot or on interface events.<br />This is the default if you run DDNS scripts by yourself (i.e. via cron with force_interval set to '0')" +msgstr "现在,DDNS更新在开机或者接口动作时不会被触发<br />如果你手工运行DDNS脚本的话(例如使用cron时把force_interval设置为0),这是默认设置." + +msgid "Currently DDNS updates are not started at boot or on interface events.<br />You can start/stop each configuration here. It will run until next reboot." +msgstr "现在,DDNS更新在开机或者接口动作时不会被触发<br />你可以在这里开始/停止每一个设置的条目.它在下次重启之前一直有效." + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "用来更新动态DNS的自定义脚本" msgid "Custom update-URL" -msgstr "更新的URL" +msgstr "自定义更新URL" + +msgid "Custom update-script" +msgstr "自定义更新脚本" + +msgid "DDNS Autostart disabled" +msgstr "DDNS自动启动已禁用." + +msgid "DDNS Service provider" +msgstr "DDNS服务提供商" + +msgid "DNS requests via TCP not supported" +msgstr "不支持使用TCP进行DNS解析" + +msgid "DNS-Server" +msgstr "DNS服务器" + +msgid "Date format" +msgstr "日期格式" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "设定用来读取系统IPv4地址的网页" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "设定用来读取系统IPv6地址的网页" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "设定用来读取系统IP地址的接口" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "设定用来读取系统IPv4地址的网络" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "设定用来读取系统IPv6地址的网络" + +msgid "Defines the source to read systems IPv4-Address from, that will be send to the DDNS provider" +msgstr "设定IPv4地址的来源.这将会被发送给DDNS提供商" + +msgid "Defines the source to read systems IPv6-Address from, that will be send to the DDNS provider" +msgstr "设定IPv6地址的来源.这将会被发送给DDNS提供商" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "设定哪一个IP地址(IPv4或IPv6)会被发送给DDNS提供商" + +msgid "Details for" +msgstr "详情:" + +msgid "Directory contains Log files for each running section" +msgstr "保存每一个运行中的设置的运行日志的目录" + +msgid "Directory contains PID and other status information for each running section" +msgstr "保存每个运行中的设置的PID以及其它状态信息的目录" + +msgid "Disabled" +msgstr "已禁用" msgid "Dynamic DNS" msgstr "动态DNS" -msgid "" -"Dynamic DNS allows that your router can be reached with a fixed hostname " -"while having a dynamically changing IP address." -msgstr "" -"动态DNS允许为主机配置一个固定的可访问域名, 但该域名对应的IP可以是动态的." +msgid "Dynamic DNS allows that your router can be reached with a fixed hostname while having a dynamically changing IP address." +msgstr "动态DNS允许为拥有动态IP的主机配置一个固定的可访问域名." -msgid "Enable" -msgstr "启用" +msgid "Enable secure communication with DDNS provider" +msgstr "启用安全连接与DDNS供应商联系" + +msgid "Enabled" +msgstr "已启用" + +msgid "Error" +msgstr "错误" + +msgid "Error Retry Counter" +msgstr "错误重试计数" + +msgid "Error Retry Interval" +msgstr "错误重试间隔" -msgid "Force update every" -msgstr "强制更新间隔" +msgid "Event Network" +msgstr "事件网络" -msgid "Force-time unit" -msgstr "强制更新的时间单位" +msgid "File" +msgstr "文件" -msgid "Hostname" -msgstr "主机名" +msgid "File not found" +msgstr "文件未找到" + +msgid "File not found or empty" +msgstr "文件未找到或为空" + +msgid "Follow this link<br />You will find more hints to optimize your system to run DDNS scripts with all options" +msgstr "打开这个链接<br />你将会得到更多关于如何通过所有设置项优化你的系统以运行DDNS脚本的提示." + +msgid "For detailed information about parameter settings look here." +msgstr "请看这里获得关于参数设置的详细信息" + +msgid "For supported codes look here" +msgstr "查看这里获取支持的编码" + +msgid "Force IP Version" +msgstr "强制设定IP版本" + +msgid "Force IP Version not supported" +msgstr "不支持强制设定IP版本" + +msgid "Force Interval" +msgstr "设定周期" + +msgid "Force TCP on DNS" +msgstr "强制使用TCP进行DNS查询" + +msgid "Forced IP Version don't matched" +msgstr "强制设定的IP版本不匹配" + +msgid "Format" +msgstr "格式" + +msgid "Format: IP or FQDN" +msgstr "格式:IP或者FQDN" + +msgid "GNU Wget will use the IP of given network, cURL will use the physical interface." +msgstr "GNU Wget将会使用给定的网络的IP地址,而cURL将会使用物理接口" + +msgid "Global Settings" +msgstr "全局设置" + +msgid "HTTPS not supported" +msgstr "不支持HTTPS" + +msgid "Hints" +msgstr "提示" + +msgid "Hostname/Domain" +msgstr "主机名/域名" + +msgid "IP address source" +msgstr "IP地址来源" + +msgid "IP address version" +msgstr "IP地址版本" + +msgid "IPv4-Address" +msgstr "IPv4地址" + +msgid "IPv6 address must be given in square brackets" +msgstr "IPv6地址必须填写在中括号(\"[ ]\")内" + +msgid "IPv6 is currently not (fully) supported by this system<br />Please follow the instructions on OpenWrt's homepage to enable IPv6 support<br />or update your system to the latest OpenWrt Release" +msgstr "当前系统暂时不能(完整地)支持IPv6<br />请查看OpenWrt首页的介绍以启用IPv6支持<br />或者更新你的系统到最新OpenWrt版本" + +msgid "IPv6 not supported" +msgstr "IPv6不被支持" + +msgid "IPv6-Address" +msgstr "IPv6地址" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "如果cURL和GNU Wget同时被安装,那么Wget将会被优先使用." + +msgid "If this service section is disabled it could not be started.<br />Neither from LuCI interface nor from console" +msgstr "如果服务配置被禁用那么它将不能被启动.<br />无论是通过LuCI页面或者是通过终端." + +msgid "If you want to send updates for IPv4 and IPv6 you need to define two separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "如果你需要同时更新IPv4和IPv6地址,你需要单独添加两个配置项(例如'myddns_ipv4'和'myddns_ipv6')" + +msgid "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "OpenWrt中,cURL/libcurl的某些版本编译时没有启用代理服务器支持" + +msgid "Info" +msgstr "信息" msgid "Interface" msgstr "接口" +msgid "Interval to check for changed IP<br />Values below 5 minutes == 300 seconds are not supported" +msgstr "检查IP是否改变的时间隔<br />不支持低于5分钟(300秒)的数值." + +msgid "Interval to force updates send to DDNS Provider<br />Setting this parameter to 0 will force the script to only run once<br />Values lower 'Check Interval' except '0' are not supported" +msgstr "强制向提供商更新DDNS的时间周期<br />把这个参数设置为0将会让脚本仅执行一次<br />不支持低于\"检查时间周期\"的数值(除了0)." + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "强烈不建议初次使用的用户修改本页设定." + +msgid "Last Update" +msgstr "上次更新" + +msgid "Loading" +msgstr "加载中" + +msgid "Log File Viewer" +msgstr "日志查看器" + +msgid "Log directory" +msgstr "日志目录" + +msgid "Log length" +msgstr "日志长度" + +msgid "Log to file" +msgstr "把日志记录到文件" + +msgid "Log to syslog" +msgstr "把日志记录到系统日志" + +msgid "Neither GNU Wget with SSL nor cURL installed to select a network to use for communication." +msgstr "包含SSL支持的GNU Wget或者cURL均未被安装.无法选择一个网络用于通信." + +msgid "Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS protocol." +msgstr "包含SSL支持的GNU Wget或者cURL均未被安装.无法使用HTTPS更新DDNS" + msgid "Network" msgstr "网络" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "DDNS更新脚本将会被运行于该网络" + +msgid "Never" +msgstr "从不" + +msgid "Next Update" +msgstr "下次更新" + +msgid "No data" +msgstr "无数据" + +msgid "No logging" +msgstr "无日志" + +msgid "Non-public and by default blocked IP's" +msgstr "非公网IP以及默认被锁定的IP" + +msgid "Notice" +msgstr "提示" + +msgid "Number of last lines stored in log files" +msgstr "日志文件中的最后几行" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "可选:强制使用仅IPv4/IPv6通信." + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "可选:强制使用TCP而非UDP请求DNS." + +msgid "OPTIONAL: Network to use for communication" +msgstr "可选:用于通信的网络" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "可选:用于检测以及更新的代理服务器" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "可选:使用非默认DNS服务器检测\"已注册的IP地址\"" + +msgid "On Error the script will retry the failed action after given time" +msgstr "当出错时,脚本将会重试失败的动作的次数" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "当出错时,脚本将会重试该次数之后退出" + +msgid "Overview" +msgstr "总览" + +msgid "PROXY-Server" +msgstr "代理服务器" + +msgid "PROXY-Server not supported" +msgstr "不支持代理服务器" + msgid "Password" msgstr "密码" -msgid "Service" -msgstr "服务提供商" +msgid "Path to CA-Certificate" +msgstr "CA证书路径" -msgid "Source of IP address" -msgstr "IP地址来源" +msgid "Please [Save & Apply] your changes first" +msgstr "请先保存并应用您的设置" + +msgid "Please press [Read] button" +msgstr "请按下\"读取\"按钮" + +msgid "Please update to the current version!" +msgstr "请更新到最新版本!" + +msgid "Process ID" +msgstr "处理ID" + +msgid "Read / Reread log file" +msgstr "读取/重新读取日志文件" + +msgid "Registered IP" +msgstr "已注册的IP地址" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "在更新URL中使用[DOMAIN]替换域名" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "在更新URL中使用[PASSWORD]替换密码" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "在更新URL中使用[USERNAME]替换用户名" + +msgid "Run once" +msgstr "运行一次" + +msgid "Script" +msgstr "脚本" + +msgid "Show more" +msgstr "查看更多" + +msgid "Software update required" +msgstr "需要进行软件更新" + +msgid "Start" +msgstr "启用" + +msgid "Start / Stop" +msgstr "启用/禁用" + +msgid "Status directory" +msgstr "状态目录" + +msgid "Stopped" +msgstr "已停止" + +msgid "The currently installed 'ddns-scripts' package did not support all available settings." +msgstr "当前已安装的'ddns-scripts'软件包暂不支持所有可用设置项" + +msgid "There is no service configured." +msgstr "没有已经配置好的服务项" + +msgid "Timer Settings" +msgstr "计时器设定" + +msgid "To change global settings click here" +msgstr "点击这里以更改全局设置" + +msgid "To use cURL activate this option." +msgstr "选中这个项以使用cURL" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "用于检测的URL" + +msgid "Unknown error" +msgstr "未知错误" + +msgid "Update URL to be used for updating your DDNS Provider.<br />Follow instructions you will find on their WEB page." +msgstr "DDNS提供商用于更新DDNS的URL<br />跟随教程你将会在它们的网站上提供这个URL." + +msgid "Update error" +msgstr "更新错误" + +msgid "Use HTTP Secure" +msgstr "使用HTTPS" + +msgid "Use cURL" +msgstr "使用cURL" + +msgid "User defined script to read systems IP-Address" +msgstr "使用设定的脚本来读取系统IP地址" + msgid "Username" msgstr "用户名" -msgid "custom" -msgstr "自定义" +msgid "Verify" +msgstr "验证" -# Hours -msgid "h" -msgstr "时" +msgid "Version" +msgstr "版本" -msgid "interface" -msgstr "接口" +msgid "Version Information" +msgstr "版本信息" -# Minutes (not minimum) -msgid "min" -msgstr "分" +msgid "Waiting for changes to be applied..." +msgstr "正在应用更改..." -msgid "network" -msgstr "网络" +msgid "Warning" +msgstr "等待" + +msgid "Writes detailed messages to log file. File will be truncated automatically." +msgstr "向日志中写入详细信息.文件将会被自动减小." + +msgid "Writes log messages to syslog. Critical Errors will always be written to syslog." +msgstr "把日志写入系统日志.无论是否启用这项,错误信息总是会被写入系统日志" + +msgid "You should install BIND host package for DNS requests." +msgstr "你需要安装BIND以请求DNS记录." + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "你需要安装包含SSL支持的GNU Wget(推荐)或是cURL软件包." + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "你需要安装包含SSL支持的GNU Wget或是cURL软件包." + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "你需要安装包含SSL支持的GNU Wget或替换libcurl." + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "cURL已经安装,但是libcurl编译时没有启用代理支持." + +msgid "cURL without Proxy Support" +msgstr "cURL不包含代理支持" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "不能确定本地IP.请更换IP来源." + +msgid "can not resolve host:" +msgstr "不能解析主机:" + +msgid "config error" +msgstr "配置错误" + +msgid "days" +msgstr "天" + +msgid "directory or path/file" +msgstr "目录或者到文件的路径" + +msgid "either url or script could be set" +msgstr "接受URL或者脚本" + +msgid "enable here" +msgstr "在这里启用" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "文件或目录未找到或未\"被忽视\"" + +msgid "help" +msgstr "帮助" + +msgid "hours" +msgstr "小时" + +msgid "installed" +msgstr "已安装" + +msgid "invalid - Sample" +msgstr "不合法 - 示例" + +msgid "minimum value '0'" +msgstr "最小值0" + +msgid "minimum value '1'" +msgstr "最小值1" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "最小值为5分钟(300秒)" + +msgid "minutes" +msgstr "分钟" + +msgid "missing / required" +msgstr "必须填写" + +msgid "must be greater or equal 'Check Interval'" +msgstr "必须大于或等于\"检查时间周期\"" + +msgid "must start with 'http://'" +msgstr "必须以'http://'开头" + +msgid "nc (netcat) can not connect" +msgstr "nc(netcat)不可连接" + +msgid "never" +msgstr "从不" + +msgid "no data" +msgstr "无数据" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "未找到或者不可执行 - 示例: '/path/to/script.sh'" + +msgid "nslookup can not resolve host" +msgstr "nslookup不能解析主机" + +msgid "or" +msgstr "或者" + +msgid "or higher" +msgstr "或者更大" + +msgid "please disable" +msgstr "请禁用" + +msgid "please remove entry" +msgstr "请移除该字段" + +msgid "please select 'IPv4' address version" +msgstr "请设定IPv4地址" + +msgid "please select 'IPv4' address version in" +msgstr "请设定IPv4地址于" + +msgid "please set to 'default'" +msgstr "请设置为\"默认\"" + +msgid "proxy port missing" +msgstr "代理端口未填" + +msgid "required" +msgstr "必须填写" + +msgid "seconds" +msgstr "秒" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "使用HTTPS但不检查服务器证书(不安全)" + +msgid "unknown error" +msgstr "未知错误" -#~ msgid "Event interface" -#~ msgstr "事件触发接口" +msgid "unspecific error" +msgstr "未指定的错误" -#~ msgid "On which interface up should start the ddns script process." -#~ msgstr "在哪个接口启动DDNS脚本进程。" +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "使用主机名或IPv4/IPv6地址" diff --git a/applications/luci-app-ddns/po/zh-tw/ddns.po b/applications/luci-app-ddns/po/zh-tw/ddns.po index 96037c693..ec930f432 100644 --- a/applications/luci-app-ddns/po/zh-tw/ddns.po +++ b/applications/luci-app-ddns/po/zh-tw/ddns.po @@ -11,15 +11,154 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.6\n" -msgid "Check for changed IP every" -msgstr "檢查IP變動的時間間隔" +msgid "&" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- default --" +msgstr "" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allow non-public IP's" +msgstr "" + +msgid "Applying changes" +msgstr "" + +msgid "Basic Settings" +msgstr "" + +msgid "" +"Below a list of configuration tips for your system to run Dynamic DNS " +"updates without limitations" +msgstr "" + +msgid "" +"Below is a list of configured DDNS configurations and their current state." +msgstr "" + +msgid "Bind Network" +msgstr "" + +msgid "Binding to a specific network not supported" +msgstr "" + +msgid "" +"BusyBox's nslookup and Wget do not support to specify the IP version to use " +"for communication with DDNS Provider." +msgstr "" -msgid "Check-time unit" -msgstr "時間單位" +msgid "" +"BusyBox's nslookup does not support to specify to use TCP instead of default " +"UDP when requesting DNS server" +msgstr "" + +msgid "Casual users should not change this setting" +msgstr "" + +msgid "Check Interval" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Config error" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "" +"Configure here the details for all Dynamic DNS services including this LuCI " +"application." +msgstr "" + +msgid "Configure here the details for selected Dynamic DNS service." +msgstr "" + +msgid "Current setting" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">This is the default if you run DDNS scripts by yourself (i.e. via cron with " +"force_interval set to '0')" +msgstr "" + +msgid "" +"Currently DDNS updates are not started at boot or on interface events.<br /" +">You can start/stop each configuration here. It will run until next reboot." +msgstr "" + +msgid "Custom update script to be used for updating your DDNS Provider." +msgstr "" msgid "Custom update-URL" msgstr "自訂更新的URL" +msgid "Custom update-script" +msgstr "" + +msgid "DDNS Autostart disabled" +msgstr "" + +msgid "DDNS Service provider" +msgstr "" + +msgid "DNS requests via TCP not supported" +msgstr "" + +msgid "DNS-Server" +msgstr "" + +msgid "Date format" +msgstr "" + +msgid "Defines the Web page to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the Web page to read systems IPv6-Address from" +msgstr "" + +msgid "Defines the interface to read systems IP-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv4-Address from" +msgstr "" + +msgid "Defines the network to read systems IPv6-Address from" +msgstr "" + +msgid "" +"Defines the source to read systems IPv4-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "" +"Defines the source to read systems IPv6-Address from, that will be send to " +"the DDNS provider" +msgstr "" + +msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" +msgstr "" + +msgid "Details for" +msgstr "" + +msgid "Directory contains Log files for each running section" +msgstr "" + +msgid "" +"Directory contains PID and other status information for each running section" +msgstr "" + +msgid "Disabled" +msgstr "" + msgid "Dynamic DNS" msgstr "動態DNS" @@ -29,53 +168,528 @@ msgid "" msgstr "" "動態DNS允許為主機配置一個固定的網域名稱,但該網路名稱卻是對應到動態的IP位置" -msgid "Enable" -msgstr "啟用" +msgid "Enable secure communication with DDNS provider" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Error" +msgstr "" + +msgid "Error Retry Counter" +msgstr "" + +msgid "Error Retry Interval" +msgstr "" + +msgid "Event Network" +msgstr "" + +msgid "File" +msgstr "" + +msgid "File not found" +msgstr "" + +msgid "File not found or empty" +msgstr "" + +msgid "" +"Follow this link<br />You will find more hints to optimize your system to " +"run DDNS scripts with all options" +msgstr "" + +msgid "For detailed information about parameter settings look here." +msgstr "" + +msgid "For supported codes look here" +msgstr "" -msgid "Force update every" -msgstr "強制更新間隔" +msgid "Force IP Version" +msgstr "" -msgid "Force-time unit" -msgstr "強制更新的時間單位" +msgid "Force IP Version not supported" +msgstr "" -msgid "Hostname" -msgstr "主機名稱" +msgid "Force Interval" +msgstr "" + +msgid "Force TCP on DNS" +msgstr "" + +msgid "Forced IP Version don't matched" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Format: IP or FQDN" +msgstr "" + +msgid "" +"GNU Wget will use the IP of given network, cURL will use the physical " +"interface." +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "HTTPS not supported" +msgstr "" + +msgid "Hints" +msgstr "" + +msgid "Hostname/Domain" +msgstr "" + +msgid "IP address source" +msgstr "" + +msgid "IP address version" +msgstr "" + +msgid "IPv4-Address" +msgstr "" + +msgid "IPv6 address must be given in square brackets" +msgstr "" + +msgid "" +"IPv6 is currently not (fully) supported by this system<br />Please follow " +"the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " +"your system to the latest OpenWrt Release" +msgstr "" + +msgid "IPv6 not supported" +msgstr "" + +msgid "IPv6-Address" +msgstr "" + +msgid "If both cURL and GNU Wget are installed, Wget is used by default." +msgstr "" + +msgid "" +"If this service section is disabled it could not be started.<br />Neither " +"from LuCI interface nor from console" +msgstr "" + +msgid "" +"If you want to send updates for IPv4 and IPv6 you need to define two " +"separate Configurations i.e. 'myddns_ipv4' and 'myddns_ipv6'" +msgstr "" + +msgid "" +"In some versions cURL/libcurl in OpenWrt is compiled without proxy support." +msgstr "" + +msgid "Info" +msgstr "" msgid "Interface" msgstr "界面" +msgid "" +"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds " +"are not supported" +msgstr "" + +msgid "" +"Interval to force updates send to DDNS Provider<br />Setting this parameter " +"to 0 will force the script to only run once<br />Values lower 'Check " +"Interval' except '0' are not supported" +msgstr "" + +msgid "It is NOT recommended for casual users to change settings on this page." +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "Loading" +msgstr "" + +msgid "Log File Viewer" +msgstr "" + +msgid "Log directory" +msgstr "" + +msgid "Log length" +msgstr "" + +msgid "Log to file" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to select a network to use for " +"communication." +msgstr "" + +msgid "" +"Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS " +"protocol." +msgstr "" + msgid "Network" msgstr "網路" +msgid "Network on which the ddns-updater scripts will be started" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Next Update" +msgstr "" + +msgid "No data" +msgstr "" + +msgid "No logging" +msgstr "" + +msgid "Non-public and by default blocked IP's" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Number of last lines stored in log files" +msgstr "" + +msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." +msgstr "" + +msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." +msgstr "" + +msgid "OPTIONAL: Network to use for communication" +msgstr "" + +msgid "OPTIONAL: Proxy-Server for detection and updates." +msgstr "" + +msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." +msgstr "" + +msgid "On Error the script will retry the failed action after given time" +msgstr "" + +msgid "On Error the script will stop execution after given number of retrys" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "PROXY-Server" +msgstr "" + +msgid "PROXY-Server not supported" +msgstr "" + msgid "Password" msgstr "密碼" -msgid "Service" -msgstr "服務提供者" +msgid "Path to CA-Certificate" +msgstr "" -msgid "Source of IP address" -msgstr "IP位置來源" +msgid "Please [Save & Apply] your changes first" +msgstr "" + +msgid "Please press [Read] button" +msgstr "" + +msgid "Please update to the current version!" +msgstr "" + +msgid "Process ID" +msgstr "" + +msgid "Read / Reread log file" +msgstr "" + +msgid "Registered IP" +msgstr "" + +msgid "Replaces [DOMAIN] in Update-URL" +msgstr "" + +msgid "Replaces [PASSWORD] in Update-URL" +msgstr "" + +msgid "Replaces [USERNAME] in Update-URL" +msgstr "" + +msgid "Run once" +msgstr "" + +msgid "Script" +msgstr "" + +msgid "Show more" +msgstr "" + +msgid "Software update required" +msgstr "" + +msgid "Start" +msgstr "" + +msgid "Start / Stop" +msgstr "" + +msgid "Status directory" +msgstr "" + +msgid "Stopped" +msgstr "" + +msgid "" +"The currently installed 'ddns-scripts' package did not support all available " +"settings." +msgstr "" + +msgid "There is no service configured." +msgstr "" + +msgid "Timer Settings" +msgstr "" + +msgid "To change global settings click here" +msgstr "" + +msgid "To use cURL activate this option." +msgstr "" msgid "URL" msgstr "URL" +msgid "URL to detect" +msgstr "" + +msgid "Unknown error" +msgstr "" + +msgid "" +"Update URL to be used for updating your DDNS Provider.<br />Follow " +"instructions you will find on their WEB page." +msgstr "" + +msgid "Update error" +msgstr "" + +msgid "Use HTTP Secure" +msgstr "" + +msgid "Use cURL" +msgstr "" + +msgid "User defined script to read systems IP-Address" +msgstr "" + msgid "Username" msgstr "使用者名稱" -msgid "custom" -msgstr "自訂" +msgid "Verify" +msgstr "" -msgid "h" -msgstr "小時" +msgid "Version" +msgstr "" -msgid "interface" -msgstr "界面" +msgid "Version Information" +msgstr "" -msgid "min" -msgstr "分鐘" +msgid "Waiting for changes to be applied..." +msgstr "" -msgid "network" -msgstr "網路" +msgid "Warning" +msgstr "" + +msgid "" +"Writes detailed messages to log file. File will be truncated automatically." +msgstr "" + +msgid "" +"Writes log messages to syslog. Critical Errors will always be written to " +"syslog." +msgstr "" + +msgid "You should install BIND host package for DNS requests." +msgstr "" + +msgid "You should install GNU Wget with SSL (prefered) or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or cURL package." +msgstr "" + +msgid "You should install GNU Wget with SSL or replace libcurl." +msgstr "" + +msgid "cURL is installed, but libcurl was compiled without proxy support." +msgstr "" + +msgid "cURL without Proxy Support" +msgstr "" + +msgid "can not detect local IP. Please select a different Source combination" +msgstr "" + +msgid "can not resolve host:" +msgstr "" + +msgid "config error" +msgstr "" + +msgid "days" +msgstr "" + +msgid "directory or path/file" +msgstr "" + +msgid "either url or script could be set" +msgstr "" + +msgid "enable here" +msgstr "" + +msgid "file or directory not found or not 'IGNORE'" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "installed" +msgstr "" + +msgid "invalid - Sample" +msgstr "" + +msgid "minimum value '0'" +msgstr "" + +msgid "minimum value '1'" +msgstr "" + +msgid "minimum value 5 minutes == 300 seconds" +msgstr "" + +msgid "minutes" +msgstr "" + +msgid "missing / required" +msgstr "" + +msgid "must be greater or equal 'Check Interval'" +msgstr "" + +msgid "must start with 'http://'" +msgstr "" + +msgid "nc (netcat) can not connect" +msgstr "" + +msgid "never" +msgstr "" + +msgid "no data" +msgstr "" + +msgid "not found or not executable - Sample: '/path/to/script.sh'" +msgstr "" + +msgid "nslookup can not resolve host" +msgstr "" + +msgid "or" +msgstr "" + +msgid "or higher" +msgstr "" + +msgid "please disable" +msgstr "" + +msgid "please remove entry" +msgstr "" + +msgid "please select 'IPv4' address version" +msgstr "" + +msgid "please select 'IPv4' address version in" +msgstr "" + +msgid "please set to 'default'" +msgstr "" + +msgid "proxy port missing" +msgstr "" + +msgid "required" +msgstr "" + +msgid "seconds" +msgstr "" + +msgid "to run HTTPS without verification of server certificates (insecure)" +msgstr "" + +msgid "unknown error" +msgstr "" + +msgid "unspecific error" +msgstr "" + +msgid "use hostname, FQDN, IPv4- or IPv6-Address" +msgstr "" + +#~ msgid "Check for changed IP every" +#~ msgstr "檢查IP變動的時間間隔" + +#~ msgid "Check-time unit" +#~ msgstr "時間單位" + +#~ msgid "Enable" +#~ msgstr "啟用" + +#~ msgid "Force update every" +#~ msgstr "強制更新間隔" + +#~ msgid "Force-time unit" +#~ msgstr "強制更新的時間單位" + +#~ msgid "Hostname" +#~ msgstr "主機名稱" + +#~ msgid "Service" +#~ msgstr "服務提供者" + +#~ msgid "Source of IP address" +#~ msgstr "IP位置來源" + +#~ msgid "custom" +#~ msgstr "自訂" + +#~ msgid "h" +#~ msgstr "小時" + +#~ msgid "interface" +#~ msgstr "界面" + +#~ msgid "min" +#~ msgstr "分鐘" + +#~ msgid "network" +#~ msgstr "網路" #~ msgid "Event interface" #~ msgstr "事件界面" |